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 SummaryFields Modifier and Type Field Description protected Collection<ClientScopeAttributeEntity>attributesprotected StringrealmId
 - 
Constructor SummaryConstructors Constructor Description ClientScopeEntity()
 - 
Method SummaryAll 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- 
realmIdprotected String realmId 
 - 
attributesprotected Collection<ClientScopeAttributeEntity> attributes 
 
- 
 - 
Method Detail- 
getRealmIdpublic String getRealmId() 
 - 
setRealmIdpublic void setRealmId(String realmId) 
 - 
getIdpublic String getId() 
 - 
setIdpublic void setId(String id) 
 - 
getNamepublic String getName() 
 - 
setNamepublic void setName(String name) 
 - 
getDescriptionpublic String getDescription() 
 - 
setDescriptionpublic void setDescription(String description) 
 - 
getProtocolMapperspublic Collection<ProtocolMapperEntity> getProtocolMappers() 
 - 
setProtocolMapperspublic void setProtocolMappers(Collection<ProtocolMapperEntity> protocolMappers) 
 - 
getProtocolpublic String getProtocol() 
 - 
setProtocolpublic void setProtocol(String protocol) 
 - 
getAttributespublic Collection<ClientScopeAttributeEntity> getAttributes() 
 - 
setAttributespublic void setAttributes(Collection<ClientScopeAttributeEntity> attributes) 
 
- 
 
-