Class PermissionTicketEntity
- java.lang.Object
-
- org.keycloak.authorization.jpa.entities.PermissionTicketEntity
-
@Entity public class PermissionTicketEntity extends Object
- Author:
- Pedro Igor
-
-
Constructor Summary
Constructors Constructor Description PermissionTicketEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)LonggetCreatedTimestamp()LonggetGrantedTimestamp()StringgetId()StringgetOwner()PolicyEntitygetPolicy()StringgetRequester()ResourceEntitygetResource()ResourceServerEntitygetResourceServer()ScopeEntitygetScope()inthashCode()booleanisGranted()voidsetCreatedTimestamp(Long createdTimestamp)voidsetGrantedTimestamp(long grantedTimestamp)voidsetId(String id)voidsetOwner(String owner)voidsetPolicy(PolicyEntity policy)voidsetRequester(String requester)voidsetResource(ResourceEntity resource)voidsetResourceServer(ResourceServerEntity resourceServer)voidsetScope(ScopeEntity scope)
-
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getOwner
public String getOwner()
-
setOwner
public void setOwner(String owner)
-
getResource
public ResourceEntity getResource()
-
setResource
public void setResource(ResourceEntity resource)
-
getScope
public ScopeEntity getScope()
-
setScope
public void setScope(ScopeEntity scope)
-
getResourceServer
public ResourceServerEntity getResourceServer()
-
setResourceServer
public void setResourceServer(ResourceServerEntity resourceServer)
-
setRequester
public void setRequester(String requester)
-
getRequester
public String getRequester()
-
getCreatedTimestamp
public Long getCreatedTimestamp()
-
setCreatedTimestamp
public void setCreatedTimestamp(Long createdTimestamp)
-
getGrantedTimestamp
public Long getGrantedTimestamp()
-
setGrantedTimestamp
public void setGrantedTimestamp(long grantedTimestamp)
-
isGranted
public boolean isGranted()
-
getPolicy
public PolicyEntity getPolicy()
-
setPolicy
public void setPolicy(PolicyEntity policy)
-
-