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 boolean
equals(Object o)
ClientEntity
getClient()
ClientScopeEntity
getClientScope()
Map<String,String>
getConfig()
String
getId()
String
getName()
String
getProtocol()
String
getProtocolMapper()
int
hashCode()
void
setClient(ClientEntity client)
void
setClientScope(ClientScopeEntity clientScope)
void
setConfig(Map<String,String> config)
void
setId(String id)
void
setName(String name)
void
setProtocol(String protocol)
void
setProtocolMapper(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)
-
-