Package com.soffid.iam.api
Class BpmUserProcess
- java.lang.Object
-
- com.soffid.iam.api.BpmUserProcess
-
- All Implemented Interfaces:
Serializable
public class BpmUserProcess extends Object implements Serializable
ValueObject BpmUserProcess- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BpmUserProcess()BpmUserProcess(BpmUserProcess otherBean)BpmUserProcess(Long processId, Boolean terminated)BpmUserProcess(Long id, Long processId, String userCode, Boolean terminated, String userNationalId)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description LonggetId()Gets value for attribute idLonggetProcessId()Gets value for attribute processIdBooleangetTerminated()Gets value for attribute terminatedStringgetUserCode()Gets value for attribute userCodeStringgetUserNationalId()Gets value for attribute userNationalIdvoidsetId(Long id)Sets value for attribute idvoidsetProcessId(Long processId)Sets value for attribute processIdvoidsetTerminated(Boolean terminated)Sets value for attribute terminatedvoidsetUserCode(String userCode)Sets value for attribute userCodevoidsetUserNationalId(String userNationalId)Sets value for attribute userNationalIdstatic BpmUserProcesstoBpmUserProcess(UsuariWFProcess vo)Creates a BpmUserProcess value object based on a UsuariWFProcess object.static voidtoBpmUserProcess(UsuariWFProcess source, BpmUserProcess target)Updates a BpmUserProcess value object based on a UsuariWFProcess object.static BpmUserProcess[]toBpmUserProcessArray(UsuariWFProcess[] source)Creates a BpmUserProcess array on a UsuariWFProcess array.static AsyncList<BpmUserProcess>toBpmUserProcessAsyncList(AsyncList<UsuariWFProcess> source)Creates a BpmUserProcess asynclist on a UsuariWFProcess collection.static PagedResult<BpmUserProcess>toBpmUserProcessList(PagedResult<UsuariWFProcess> source)Creates a BpmUserProcess pagedResult on a UsuariWFProcess collection.static List<BpmUserProcess>toBpmUserProcessList(Collection<UsuariWFProcess> source)Creates a BpmUserProcess list on a UsuariWFProcess collection.StringtoString()Returns a string representation of the value object.
-
-
-
Method Detail
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
getProcessId
public Long getProcessId()
Gets value for attribute processId
-
setProcessId
public void setProcessId(Long processId)
Sets value for attribute processId
-
getUserCode
public String getUserCode()
Gets value for attribute userCode
-
setUserCode
public void setUserCode(String userCode)
Sets value for attribute userCode
-
getTerminated
public Boolean getTerminated()
Gets value for attribute terminated
-
setTerminated
public void setTerminated(Boolean terminated)
Sets value for attribute terminated
-
getUserNationalId
public String getUserNationalId()
Gets value for attribute userNationalId
-
setUserNationalId
public void setUserNationalId(String userNationalId)
Sets value for attribute userNationalId
-
toString
public String toString()
Returns a string representation of the value object.
-
toBpmUserProcess
public static BpmUserProcess toBpmUserProcess(UsuariWFProcess vo)
Creates a BpmUserProcess value object based on a UsuariWFProcess object.
-
toBpmUserProcessList
public static List<BpmUserProcess> toBpmUserProcessList(Collection<UsuariWFProcess> source)
Creates a BpmUserProcess list on a UsuariWFProcess collection.
-
toBpmUserProcessList
public static PagedResult<BpmUserProcess> toBpmUserProcessList(PagedResult<UsuariWFProcess> source)
Creates a BpmUserProcess pagedResult on a UsuariWFProcess collection.
-
toBpmUserProcessAsyncList
public static AsyncList<BpmUserProcess> toBpmUserProcessAsyncList(AsyncList<UsuariWFProcess> source)
Creates a BpmUserProcess asynclist on a UsuariWFProcess collection.
-
toBpmUserProcessArray
public static BpmUserProcess[] toBpmUserProcessArray(UsuariWFProcess[] source)
Creates a BpmUserProcess array on a UsuariWFProcess array.
-
toBpmUserProcess
public static void toBpmUserProcess(UsuariWFProcess source, BpmUserProcess target)
Updates a BpmUserProcess value object based on a UsuariWFProcess object.
-
-