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 StringgetApplicationCode()Gets value for attribute applicationCodeStringgetAssignmentDate()Gets value for attribute assignmentDateStringgetInformation()Gets value for attribute informationStringgetRoleName()Gets value for attribute roleNameStringgetUserCode()Gets value for attribute userCodeStringgetUserFullName()Gets value for attribute userFullNamevoidsetApplicationCode(String applicationCode)Sets value for attribute applicationCodevoidsetAssignmentDate(String assignmentDate)Sets value for attribute assignmentDatevoidsetInformation(String information)Sets value for attribute informationvoidsetRoleName(String roleName)Sets value for attribute roleNamevoidsetUserCode(String userCode)Sets value for attribute userCodevoidsetUserFullName(String userFullName)Sets value for attribute userFullNamestatic RemindertoReminder(Notificacio vo)Creates a Reminder value object based on a Notificacio object.static voidtoReminder(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.StringtoString()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.
-
-