Package com.soffid.iam.bpm.api
Class Token
- java.lang.Object
-
- com.soffid.iam.bpm.api.Token
-
- All Implemented Interfaces:
Serializable
public class Token extends Object implements Serializable
ValueObject Token- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getNodeName()
Gets value for attribute nodeNamelong
getProcessId()
Gets value for attribute processIdString
getTokenName()
Gets value for attribute tokenNameboolean
isFinished()
Gets value for attribute finishedboolean
isLocked()
Gets value for attribute lockedboolean
isSuspended()
Gets value for attribute suspendedvoid
setFinished(boolean finished)
Sets value for attribute finishedvoid
setLocked(boolean locked)
Sets value for attribute lockedvoid
setNodeName(String nodeName)
Sets value for attribute nodeNamevoid
setProcessId(long processId)
Sets value for attribute processIdvoid
setSuspended(boolean suspended)
Sets value for attribute suspendedvoid
setTokenName(String tokenName)
Sets value for attribute tokenNameString
toString()
Returns a string representation of the value object.static Token
toToken(Token vo)
Creates a Token value object based on a Token object.static void
toToken(Token source, Token target)
Updates a Token value object based on a Token object.static Token[]
toTokenArray(Token[] source)
Creates a Token array on a Token array.static AsyncList<Token>
toTokenAsyncList(AsyncList<Token> source)
Creates a Token asynclist on a Token collection.static PagedResult<Token>
toTokenList(PagedResult<Token> source)
Creates a Token pagedResult on a Token collection.static List<Token>
toTokenList(Collection<Token> source)
Creates a Token list on a Token collection.
-
-
-
Method Detail
-
getTokenName
public String getTokenName()
Gets value for attribute tokenName
-
setTokenName
public void setTokenName(String tokenName)
Sets value for attribute tokenName
-
getProcessId
public long getProcessId()
Gets value for attribute processId
-
setProcessId
public void setProcessId(long processId)
Sets value for attribute processId
-
getNodeName
public String getNodeName()
Gets value for attribute nodeName
-
setNodeName
public void setNodeName(String nodeName)
Sets value for attribute nodeName
-
isFinished
public boolean isFinished()
Gets value for attribute finished
-
setFinished
public void setFinished(boolean finished)
Sets value for attribute finished
-
isLocked
public boolean isLocked()
Gets value for attribute locked
-
setLocked
public void setLocked(boolean locked)
Sets value for attribute locked
-
isSuspended
public boolean isSuspended()
Gets value for attribute suspended
-
setSuspended
public void setSuspended(boolean suspended)
Sets value for attribute suspended
-
toString
public String toString()
Returns a string representation of the value object.
-
toToken
public static Token toToken(Token vo)
Creates a Token value object based on a Token object.
-
toTokenList
public static List<Token> toTokenList(Collection<Token> source)
Creates a Token list on a Token collection.
-
toTokenList
public static PagedResult<Token> toTokenList(PagedResult<Token> source)
Creates a Token pagedResult on a Token collection.
-
toTokenAsyncList
public static AsyncList<Token> toTokenAsyncList(AsyncList<Token> source)
Creates a Token asynclist on a Token collection.
-
toTokenArray
public static Token[] toTokenArray(Token[] source)
Creates a Token array on a Token array.
-
-