Package com.soffid.iam.model
Class IssuePolicyEntity
- java.lang.Object
-
- com.soffid.iam.model.IssuePolicyEntity
-
- Direct Known Subclasses:
IssuePolicyEntityImpl
public abstract class IssuePolicyEntity extends Object
Entity IssuePolicyEntity
-
-
Constructor Summary
Constructors Constructor Description IssuePolicyEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object object)
Returnstrue
if the argument is an IssuePolicyEntity instance and all identifiers for this entity equal the identifiers of the argument entity.Collection<IssuePolicyActionEntity>
getActions()
Gets value for attribute actionsString
getActor()
Gets value for attribute actorString
getDescription()
Gets value for attribute descriptionLong
getId()
Gets value for attribute idcom.soffid.iam.api.IssuePolicyStatus
getStatus()
Gets value for attribute statusTenantEntity
getTenant()
Gets value for attribute tenantString
getType()
Gets value for attribute typeint
hashCode()
Returns a hash code based on this entity's identifiers.void
setActions(Collection<IssuePolicyActionEntity> actions)
Sets value for attribute actionsvoid
setActor(String actor)
Sets value for attribute actorvoid
setDescription(String description)
Sets value for attribute descriptionvoid
setId(Long id)
Sets value for attribute idvoid
setStatus(com.soffid.iam.api.IssuePolicyStatus status)
Sets value for attribute statusvoid
setTenant(TenantEntity tenant)
Sets value for attribute tenantvoid
setType(String type)
Sets value for attribute type
-
-
-
Method Detail
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
getType
public String getType()
Gets value for attribute type
-
setType
public void setType(String type)
Sets value for attribute type
-
getStatus
public com.soffid.iam.api.IssuePolicyStatus getStatus()
Gets value for attribute status
-
setStatus
public void setStatus(com.soffid.iam.api.IssuePolicyStatus status)
Sets value for attribute status
-
getDescription
public String getDescription()
Gets value for attribute description
-
setDescription
public void setDescription(String description)
Sets value for attribute description
-
getActor
public String getActor()
Gets value for attribute actor
-
setActor
public void setActor(String actor)
Sets value for attribute actor
-
getTenant
public TenantEntity getTenant()
Gets value for attribute tenant
-
setTenant
public void setTenant(TenantEntity tenant)
Sets value for attribute tenant
-
getActions
public Collection<IssuePolicyActionEntity> getActions()
Gets value for attribute actions
-
setActions
public void setActions(Collection<IssuePolicyActionEntity> actions)
Sets value for attribute actions
-
equals
public boolean equals(Object object)
Returnstrue
if the argument is an IssuePolicyEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalse
otherwise.
-
-