Package com.soffid.iam.api
Class PrinterUser
- java.lang.Object
-
- com.soffid.iam.api.PrinterUser
-
- All Implemented Interfaces:
Serializable
public class PrinterUser extends Object implements Serializable
ValueObject PrinterUser- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PrinterUser()
PrinterUser(PrinterUser otherBean)
PrinterUser(String printer, String user)
PrinterUser(String printer, String user, Boolean enabledByDefault, Long id, String fullName, String printerServerName)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Boolean
getEnabledByDefault()
Gets value for attribute enabledByDefaultString
getFullName()
Gets value for attribute fullNameLong
getId()
Gets value for attribute idString
getPrinter()
Gets value for attribute printerString
getPrinterServerName()
Gets value for attribute printerServerNameString
getUser()
Gets value for attribute uservoid
setEnabledByDefault(Boolean enabledByDefault)
Sets value for attribute enabledByDefaultvoid
setFullName(String fullName)
Sets value for attribute fullNamevoid
setId(Long id)
Sets value for attribute idvoid
setPrinter(String printer)
Sets value for attribute printervoid
setPrinterServerName(String printerServerName)
Sets value for attribute printerServerNamevoid
setUser(String user)
Sets value for attribute userstatic PrinterUser
toPrinterUser(UsuariImpressora vo)
Creates a PrinterUser value object based on a UsuariImpressora object.static void
toPrinterUser(UsuariImpressora source, PrinterUser target)
Updates a PrinterUser value object based on a UsuariImpressora object.static PrinterUser[]
toPrinterUserArray(UsuariImpressora[] source)
Creates a PrinterUser array on a UsuariImpressora array.static AsyncList<PrinterUser>
toPrinterUserAsyncList(AsyncList<UsuariImpressora> source)
Creates a PrinterUser asynclist on a UsuariImpressora collection.static PagedResult<PrinterUser>
toPrinterUserList(PagedResult<UsuariImpressora> source)
Creates a PrinterUser pagedResult on a UsuariImpressora collection.static List<PrinterUser>
toPrinterUserList(Collection<UsuariImpressora> source)
Creates a PrinterUser list on a UsuariImpressora collection.String
toString()
Returns a string representation of the value object.
-
-
-
Method Detail
-
getPrinter
public String getPrinter()
Gets value for attribute printer
-
setPrinter
public void setPrinter(String printer)
Sets value for attribute printer
-
getUser
public String getUser()
Gets value for attribute user
-
setUser
public void setUser(String user)
Sets value for attribute user
-
getEnabledByDefault
public Boolean getEnabledByDefault()
Gets value for attribute enabledByDefault
-
setEnabledByDefault
public void setEnabledByDefault(Boolean enabledByDefault)
Sets value for attribute enabledByDefault
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
getFullName
public String getFullName()
Gets value for attribute fullName
-
setFullName
public void setFullName(String fullName)
Sets value for attribute fullName
-
getPrinterServerName
public String getPrinterServerName()
Gets value for attribute printerServerName
-
setPrinterServerName
public void setPrinterServerName(String printerServerName)
Sets value for attribute printerServerName
-
toString
public String toString()
Returns a string representation of the value object.
-
toPrinterUser
public static PrinterUser toPrinterUser(UsuariImpressora vo)
Creates a PrinterUser value object based on a UsuariImpressora object.
-
toPrinterUserList
public static List<PrinterUser> toPrinterUserList(Collection<UsuariImpressora> source)
Creates a PrinterUser list on a UsuariImpressora collection.
-
toPrinterUserList
public static PagedResult<PrinterUser> toPrinterUserList(PagedResult<UsuariImpressora> source)
Creates a PrinterUser pagedResult on a UsuariImpressora collection.
-
toPrinterUserAsyncList
public static AsyncList<PrinterUser> toPrinterUserAsyncList(AsyncList<UsuariImpressora> source)
Creates a PrinterUser asynclist on a UsuariImpressora collection.
-
toPrinterUserArray
public static PrinterUser[] toPrinterUserArray(UsuariImpressora[] source)
Creates a PrinterUser array on a UsuariImpressora array.
-
toPrinterUser
public static void toPrinterUser(UsuariImpressora source, PrinterUser target)
Updates a PrinterUser value object based on a UsuariImpressora object.
-
-