Package org.keycloak.models.jpa.entities
Class ClientScopeEntity
- java.lang.Object
-
- org.keycloak.models.jpa.entities.ClientScopeEntity
-
@Entity public class ClientScopeEntity extends Object
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
-
Field Summary
Fields Modifier and Type Field Description protected Collection<ClientScopeAttributeEntity>attributesprotected StringrealmId
-
Constructor Summary
Constructors Constructor Description ClientScopeEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)Collection<ClientScopeAttributeEntity>getAttributes()StringgetDescription()StringgetId()StringgetName()StringgetProtocol()Collection<ProtocolMapperEntity>getProtocolMappers()StringgetRealmId()Set<String>getScopeMappingIds()inthashCode()voidsetAttributes(Collection<ClientScopeAttributeEntity> attributes)voidsetDescription(String description)voidsetId(String id)voidsetName(String name)voidsetProtocol(String protocol)voidsetProtocolMappers(Collection<ProtocolMapperEntity> protocolMappers)voidsetRealmId(String realmId)voidsetScopeMappingIds(Set<String> scopeMappingIds)
-
-
-
Field Detail
-
realmId
protected String realmId
-
attributes
protected Collection<ClientScopeAttributeEntity> attributes
-
-
Method Detail
-
getRealmId
public String getRealmId()
-
setRealmId
public void setRealmId(String realmId)
-
getId
public String getId()
-
setId
public void setId(String id)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getProtocolMappers
public Collection<ProtocolMapperEntity> getProtocolMappers()
-
setProtocolMappers
public void setProtocolMappers(Collection<ProtocolMapperEntity> protocolMappers)
-
getProtocol
public String getProtocol()
-
setProtocol
public void setProtocol(String protocol)
-
getAttributes
public Collection<ClientScopeAttributeEntity> getAttributes()
-
setAttributes
public void setAttributes(Collection<ClientScopeAttributeEntity> attributes)
-
-