Package com.soffid.iam.model
Class UserPrinterEntity
- java.lang.Object
-
- com.soffid.iam.model.UserPrinterEntity
-
- Direct Known Subclasses:
UserPrinterEntityImpl
public abstract class UserPrinterEntity extends Object
Entity UserPrinterEntity
-
-
Constructor Summary
Constructors Constructor Description UserPrinterEntity()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description booleanequals(Object object)Returnstrueif the argument is an UserPrinterEntity instance and all identifiers for this entity equal the identifiers of the argument entity.LonggetId()Gets value for attribute idLonggetOrder()Gets value for attribute orderPrinterEntitygetPrinter()Gets value for attribute printerUserEntitygetUser()Gets value for attribute userinthashCode()Returns a hash code based on this entity's identifiers.abstract booleanisAllowed(String permission)Operation isAllowed Returns true if the permission on this object is grantedvoidsetId(Long id)Sets value for attribute idvoidsetOrder(Long order)Sets value for attribute ordervoidsetPrinter(PrinterEntity printer)Sets value for attribute printervoidsetUser(UserEntity user)Sets value for attribute user
-
-
-
Method Detail
-
getOrder
public Long getOrder()
Gets value for attribute order
-
setOrder
public void setOrder(Long order)
Sets value for attribute order
-
getPrinter
public PrinterEntity getPrinter()
Gets value for attribute printer
-
setPrinter
public void setPrinter(PrinterEntity printer)
Sets value for attribute printer
-
getUser
public UserEntity getUser()
Gets value for attribute user
-
setUser
public void setUser(UserEntity user)
Sets value for attribute user
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
isAllowed
public abstract boolean isAllowed(String permission)
Operation isAllowed Returns true if the permission on this object is granted- Parameters:
permission-- Returns:
-
equals
public boolean equals(Object object)
Returnstrueif the argument is an UserPrinterEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalseotherwise.
-
-