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>
attributes
protected String
realmId
-
Constructor Summary
Constructors Constructor Description ClientScopeEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
Collection<ClientScopeAttributeEntity>
getAttributes()
String
getDescription()
String
getId()
String
getName()
String
getProtocol()
Collection<ProtocolMapperEntity>
getProtocolMappers()
String
getRealmId()
Set<String>
getScopeMappingIds()
int
hashCode()
void
setAttributes(Collection<ClientScopeAttributeEntity> attributes)
void
setDescription(String description)
void
setId(String id)
void
setName(String name)
void
setProtocol(String protocol)
void
setProtocolMappers(Collection<ProtocolMapperEntity> protocolMappers)
void
setRealmId(String realmId)
void
setScopeMappingIds(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)
-
-