You are here

getVariables

getVariables returns variables for specified task or process.
Attention: These methods were introduced in SDK version 1.4.

public Map<String, Serializable> getVariables(Process process)

public Map<String, Serializable> getVariables(Process process) returns the variables for the specified process.

Parameters

Process process
The process to return variables for.

Returns

Returns the variables for the specified process.

Exception

Throws an SkyVaultServiceException if the operation cannot be completed.

Example

public Map<String, Serializable> getVariables(Task task)

public Map<String, Serializable> getVariables(Task task) returns the variables for the specified task.

Parameters

Task task
The task to return variables for.

Returns

Returns the variables for the specified task.

Exception

Throws an SkyVaultServiceException if the operation cannot be completed.

Example