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 booleanequals(Object object)Returnstrueif 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 actionsStringgetActor()Gets value for attribute actorStringgetDescription()Gets value for attribute descriptionLonggetId()Gets value for attribute idcom.soffid.iam.api.IssuePolicyStatusgetStatus()Gets value for attribute statusTenantEntitygetTenant()Gets value for attribute tenantStringgetType()Gets value for attribute typeinthashCode()Returns a hash code based on this entity's identifiers.voidsetActions(Collection<IssuePolicyActionEntity> actions)Sets value for attribute actionsvoidsetActor(String actor)Sets value for attribute actorvoidsetDescription(String description)Sets value for attribute descriptionvoidsetId(Long id)Sets value for attribute idvoidsetStatus(com.soffid.iam.api.IssuePolicyStatus status)Sets value for attribute statusvoidsetTenant(TenantEntity tenant)Sets value for attribute tenantvoidsetType(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)
Returnstrueif the argument is an IssuePolicyEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalseotherwise.
-
-