Package org.keycloak.models.jpa.entities
Class ProtocolMapperEntity
- java.lang.Object
-
- org.keycloak.models.jpa.entities.ProtocolMapperEntity
-
@Entity public class ProtocolMapperEntity extends Object
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
-
Constructor Summary
Constructors Constructor Description ProtocolMapperEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)ClientEntitygetClient()ClientScopeEntitygetClientScope()Map<String,String>getConfig()StringgetId()StringgetName()StringgetProtocol()StringgetProtocolMapper()inthashCode()voidsetClient(ClientEntity client)voidsetClientScope(ClientScopeEntity clientScope)voidsetConfig(Map<String,String> config)voidsetId(String id)voidsetName(String name)voidsetProtocol(String protocol)voidsetProtocolMapper(String protocolMapper)
-
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getProtocol
public String getProtocol()
-
setProtocol
public void setProtocol(String protocol)
-
getProtocolMapper
public String getProtocolMapper()
-
setProtocolMapper
public void setProtocolMapper(String protocolMapper)
-
getClient
public ClientEntity getClient()
-
setClient
public void setClient(ClientEntity client)
-
getClientScope
public ClientScopeEntity getClientScope()
-
setClientScope
public void setClientScope(ClientScopeEntity clientScope)
-
-