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 boolean
equals(Object o)
Long
getCreatedTimestamp()
Long
getGrantedTimestamp()
String
getId()
String
getOwner()
PolicyEntity
getPolicy()
String
getRequester()
ResourceEntity
getResource()
ResourceServerEntity
getResourceServer()
ScopeEntity
getScope()
int
hashCode()
boolean
isGranted()
void
setCreatedTimestamp(Long createdTimestamp)
void
setGrantedTimestamp(long grantedTimestamp)
void
setId(String id)
void
setOwner(String owner)
void
setPolicy(PolicyEntity policy)
void
setRequester(String requester)
void
setResource(ResourceEntity resource)
void
setResourceServer(ResourceServerEntity resourceServer)
void
setScope(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)
-
-