Package org.keycloak.models.jpa.entities
Class ClientEntity
- java.lang.Object
-
- org.keycloak.models.jpa.entities.ClientEntity
-
@Entity public class ClientEntity extends Object
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
-
Field Summary
Fields Modifier and Type Field Description protected Collection<ClientAttributeEntity>
attributes
protected Map<String,String>
authFlowBindings
protected String
realmId
protected Set<String>
redirectUris
protected Set<String>
webOrigins
-
Constructor Summary
Constructors Constructor Description ClientEntity()
-
Method Summary
-
-
-
Field Detail
-
realmId
protected String realmId
-
attributes
protected Collection<ClientAttributeEntity> 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)
-
isEnabled
public boolean isEnabled()
-
setEnabled
public void setEnabled(boolean enabled)
-
isAlwaysDisplayInConsole
public boolean isAlwaysDisplayInConsole()
-
setAlwaysDisplayInConsole
public void setAlwaysDisplayInConsole(boolean alwaysDisplayInConsole)
-
getClientId
public String getClientId()
-
setClientId
public void setClientId(String clientId)
-
getClientAuthenticatorType
public String getClientAuthenticatorType()
-
setClientAuthenticatorType
public void setClientAuthenticatorType(String clientAuthenticatorType)
-
getSecret
public String getSecret()
-
setSecret
public void setSecret(String secret)
-
getRegistrationToken
public String getRegistrationToken()
-
setRegistrationToken
public void setRegistrationToken(String registrationToken)
-
getNotBefore
public int getNotBefore()
-
setNotBefore
public void setNotBefore(int notBefore)
-
isPublicClient
public boolean isPublicClient()
-
setPublicClient
public void setPublicClient(boolean publicClient)
-
isFullScopeAllowed
public boolean isFullScopeAllowed()
-
setFullScopeAllowed
public void setFullScopeAllowed(boolean fullScopeAllowed)
-
getAttributes
public Collection<ClientAttributeEntity> getAttributes()
-
setAttributes
public void setAttributes(Collection<ClientAttributeEntity> attributes)
-
getProtocol
public String getProtocol()
-
setProtocol
public void setProtocol(String protocol)
-
isFrontchannelLogout
public boolean isFrontchannelLogout()
-
setFrontchannelLogout
public void setFrontchannelLogout(boolean frontchannelLogout)
-
getProtocolMappers
public Collection<ProtocolMapperEntity> getProtocolMappers()
-
setProtocolMappers
public void setProtocolMappers(Collection<ProtocolMapperEntity> protocolMappers)
-
isSurrogateAuthRequired
public boolean isSurrogateAuthRequired()
-
setSurrogateAuthRequired
public void setSurrogateAuthRequired(boolean surrogateAuthRequired)
-
getRootUrl
public String getRootUrl()
-
setRootUrl
public void setRootUrl(String rootUrl)
-
getBaseUrl
public String getBaseUrl()
-
setBaseUrl
public void setBaseUrl(String baseUrl)
-
getManagementUrl
public String getManagementUrl()
-
setManagementUrl
public void setManagementUrl(String managementUrl)
-
isBearerOnly
public boolean isBearerOnly()
-
setBearerOnly
public void setBearerOnly(boolean bearerOnly)
-
isConsentRequired
public boolean isConsentRequired()
-
setConsentRequired
public void setConsentRequired(boolean consentRequired)
-
isStandardFlowEnabled
public boolean isStandardFlowEnabled()
-
setStandardFlowEnabled
public void setStandardFlowEnabled(boolean standardFlowEnabled)
-
isImplicitFlowEnabled
public boolean isImplicitFlowEnabled()
-
setImplicitFlowEnabled
public void setImplicitFlowEnabled(boolean implicitFlowEnabled)
-
isDirectAccessGrantsEnabled
public boolean isDirectAccessGrantsEnabled()
-
setDirectAccessGrantsEnabled
public void setDirectAccessGrantsEnabled(boolean directAccessGrantsEnabled)
-
isServiceAccountsEnabled
public boolean isServiceAccountsEnabled()
-
setServiceAccountsEnabled
public void setServiceAccountsEnabled(boolean serviceAccountsEnabled)
-
getNodeReRegistrationTimeout
public int getNodeReRegistrationTimeout()
-
setNodeReRegistrationTimeout
public void setNodeReRegistrationTimeout(int nodeReRegistrationTimeout)
-
-