Package com.soffid.iam.api
Class Reminder
- java.lang.Object
-
- com.soffid.iam.api.Reminder
-
- All Implemented Interfaces:
Serializable
public class Reminder extends Object implements Serializable
ValueObject Reminder- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Reminder()
Reminder(Reminder otherBean)
Reminder(String applicationCode, String roleName, String userCode, String userFullName)
Reminder(String applicationCode, String roleName, String userCode, String userFullName, String information, String assignmentDate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getApplicationCode()
Gets value for attribute applicationCodeString
getAssignmentDate()
Gets value for attribute assignmentDateString
getInformation()
Gets value for attribute informationString
getRoleName()
Gets value for attribute roleNameString
getUserCode()
Gets value for attribute userCodeString
getUserFullName()
Gets value for attribute userFullNamevoid
setApplicationCode(String applicationCode)
Sets value for attribute applicationCodevoid
setAssignmentDate(String assignmentDate)
Sets value for attribute assignmentDatevoid
setInformation(String information)
Sets value for attribute informationvoid
setRoleName(String roleName)
Sets value for attribute roleNamevoid
setUserCode(String userCode)
Sets value for attribute userCodevoid
setUserFullName(String userFullName)
Sets value for attribute userFullNamestatic Reminder
toReminder(Notificacio vo)
Creates a Reminder value object based on a Notificacio object.static void
toReminder(Notificacio source, Reminder target)
Updates a Reminder value object based on a Notificacio object.static Reminder[]
toReminderArray(Notificacio[] source)
Creates a Reminder array on a Notificacio array.static AsyncList<Reminder>
toReminderAsyncList(AsyncList<Notificacio> source)
Creates a Reminder asynclist on a Notificacio collection.static PagedResult<Reminder>
toReminderList(PagedResult<Notificacio> source)
Creates a Reminder pagedResult on a Notificacio collection.static List<Reminder>
toReminderList(Collection<Notificacio> source)
Creates a Reminder list on a Notificacio collection.String
toString()
Returns a string representation of the value object.
-
-
-
Constructor Detail
-
Reminder
public Reminder()
-
Reminder
public Reminder(String applicationCode, String roleName, String userCode, String userFullName, String information, String assignmentDate)
-
Reminder
public Reminder(String applicationCode, String roleName, String userCode, String userFullName)
-
Reminder
public Reminder(Reminder otherBean)
-
-
Method Detail
-
getApplicationCode
public String getApplicationCode()
Gets value for attribute applicationCode
-
setApplicationCode
public void setApplicationCode(String applicationCode)
Sets value for attribute applicationCode
-
getRoleName
public String getRoleName()
Gets value for attribute roleName
-
setRoleName
public void setRoleName(String roleName)
Sets value for attribute roleName
-
getUserCode
public String getUserCode()
Gets value for attribute userCode
-
setUserCode
public void setUserCode(String userCode)
Sets value for attribute userCode
-
getUserFullName
public String getUserFullName()
Gets value for attribute userFullName
-
setUserFullName
public void setUserFullName(String userFullName)
Sets value for attribute userFullName
-
getInformation
public String getInformation()
Gets value for attribute information
-
setInformation
public void setInformation(String information)
Sets value for attribute information
-
getAssignmentDate
public String getAssignmentDate()
Gets value for attribute assignmentDate
-
setAssignmentDate
public void setAssignmentDate(String assignmentDate)
Sets value for attribute assignmentDate
-
toString
public String toString()
Returns a string representation of the value object.
-
toReminder
public static Reminder toReminder(Notificacio vo)
Creates a Reminder value object based on a Notificacio object.
-
toReminderList
public static List<Reminder> toReminderList(Collection<Notificacio> source)
Creates a Reminder list on a Notificacio collection.
-
toReminderList
public static PagedResult<Reminder> toReminderList(PagedResult<Notificacio> source)
Creates a Reminder pagedResult on a Notificacio collection.
-
toReminderAsyncList
public static AsyncList<Reminder> toReminderAsyncList(AsyncList<Notificacio> source)
Creates a Reminder asynclist on a Notificacio collection.
-
toReminderArray
public static Reminder[] toReminderArray(Notificacio[] source)
Creates a Reminder array on a Notificacio array.
-
toReminder
public static void toReminder(Notificacio source, Reminder target)
Updates a Reminder value object based on a Notificacio object.
-
-