Package com.appiancorp.suiteapi.process
Class ProcessProperties
java.lang.Object
com.appiancorp.suiteapi.common.Identity
com.appiancorp.suiteapi.process.ProcessProperties
- All Implemented Interfaces:
LocalId
,Serializable
- Direct Known Subclasses:
ProcessSummary
Holds the properties of a process.
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
getDepth()
Retrieves the process depthRetrieves the process initiatorRetrieves the priority of the process.void
setDepth
(int depth_) Sets the process initiatorvoid
setInitiator
(String initiator_) Sets the process initiatorvoid
setPriority
(Priority priority_) Sets the priority of the processtoString()
Returns a string representation of theIdentity
.
-
Constructor Details
-
ProcessProperties
public ProcessProperties()
-
-
Method Details
-
getPriority
Retrieves the priority of the process. Priority can be changed due to in flight modification of the process.- Returns:
- the priority
-
setPriority
Sets the priority of the process- Parameters:
priority_
- the priority of the process- See Also:
-
getInitiator
Retrieves the process initiator- Returns:
- the user who started the process
-
setInitiator
Sets the process initiator- Parameters:
initiator_
- user who started the process
-
getDepth
public int getDepth()Retrieves the process depth- Returns:
- the current process depth
-
setDepth
public void setDepth(int depth_) Sets the process initiator- Parameters:
depth_
- the depth of the process
-
toString
Description copied from class:Identity
Returns a string representation of theIdentity
. In general, the toString method returns a string that "textually represents" this object.
-