/* * Copyright 2016 Red Hat, Inc. and/or its affiliates * and other contributors as indicated by the @author tags. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.keycloak.models.mongo.keycloak.entities; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; /** * @author <a href="mailto:mposolda@redhat.com">Marek Posolda</a> */ public class ClientEntity extends AbstractIdentifiableEntity { protected String clientId; protected String name; protected String description; protected String realmId; protected boolean enabled; protected String clientAuthenticatorType; protected String secret; protected String registrationToken; protected String protocol; protected int notBefore; protected boolean publicClient; protected boolean fullScopeAllowed; protected boolean frontchannelLogout; protected boolean surrogateAuthRequired; protected String managementUrl; protected String rootUrl; protected String baseUrl; protected boolean bearerOnly; protected boolean consentRequired; protected boolean standardFlowEnabled; protected boolean implicitFlowEnabled; protected boolean directAccessGrantsEnabled; protected boolean serviceAccountsEnabled; protected int nodeReRegistrationTimeout; // We are using names of defaultRoles (not ids) protected List<String> defaultRoles = new ArrayList<String>(); protected Map<String, Integer> registeredNodes; protected Map<String, String> attributes = new HashMap<String, String>(); protected List<String> webOrigins = new ArrayList<String>(); protected List<String> redirectUris = new ArrayList<String>(); protected List<String> scopeIds = new ArrayList<String>(); protected List<ClientIdentityProviderMappingEntity> identityProviders = new ArrayList<ClientIdentityProviderMappingEntity>(); protected List<ProtocolMapperEntity> protocolMappers = new ArrayList<ProtocolMapperEntity>(); protected String clientTemplate; protected boolean useTemplateConfig; protected boolean useTemplateScope; protected boolean useTemplateMappers; public String getClientId() { return clientId; } public void setClientId(String clientId) { this.clientId = clientId; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public boolean isEnabled() { return enabled; } public void setEnabled(boolean enabled) { this.enabled = enabled; } public String getClientAuthenticatorType() { return clientAuthenticatorType; } public void setClientAuthenticatorType(String clientAuthenticatorType) { this.clientAuthenticatorType = clientAuthenticatorType; } public String getSecret() { return secret; } public void setSecret(String secret) { this.secret = secret; } public String getRegistrationToken() { return registrationToken; } public void setRegistrationToken(String registrationToken) { this.registrationToken = registrationToken; } public int getNotBefore() { return notBefore; } public void setNotBefore(int notBefore) { this.notBefore = notBefore; } public boolean isPublicClient() { return publicClient; } public void setPublicClient(boolean publicClient) { this.publicClient = publicClient; } public String getRealmId() { return realmId; } public void setRealmId(String realmId) { this.realmId = realmId; } public List<String> getWebOrigins() { return webOrigins; } public void setWebOrigins(List<String> webOrigins) { this.webOrigins = webOrigins; } public List<String> getRedirectUris() { return redirectUris; } public void setRedirectUris(List<String> redirectUris) { this.redirectUris = redirectUris; } public List<String> getScopeIds() { return scopeIds; } public void setScopeIds(List<String> scopeIds) { this.scopeIds = scopeIds; } public boolean isFullScopeAllowed() { return fullScopeAllowed; } public void setFullScopeAllowed(boolean fullScopeAllowed) { this.fullScopeAllowed = fullScopeAllowed; } public String getProtocol() { return protocol; } public void setProtocol(String protocol) { this.protocol = protocol; } public Map<String, String> getAttributes() { return attributes; } public void setAttributes(Map<String, String> attributes) { this.attributes = attributes; } public boolean isFrontchannelLogout() { return frontchannelLogout; } public void setFrontchannelLogout(boolean frontchannelLogout) { this.frontchannelLogout = frontchannelLogout; } public List<ClientIdentityProviderMappingEntity> getIdentityProviders() { return this.identityProviders; } public void setIdentityProviders(List<ClientIdentityProviderMappingEntity> identityProviders) { this.identityProviders = identityProviders; } public List<ProtocolMapperEntity> getProtocolMappers() { return protocolMappers; } public void setProtocolMappers(List<ProtocolMapperEntity> protocolMappers) { this.protocolMappers = protocolMappers; } public boolean isSurrogateAuthRequired() { return surrogateAuthRequired; } public void setSurrogateAuthRequired(boolean surrogateAuthRequired) { this.surrogateAuthRequired = surrogateAuthRequired; } public String getManagementUrl() { return managementUrl; } public void setManagementUrl(String managementUrl) { this.managementUrl = managementUrl; } public String getRootUrl() { return rootUrl; } public void setRootUrl(String rootUrl) { this.rootUrl = rootUrl; } public String getBaseUrl() { return baseUrl; } public void setBaseUrl(String baseUrl) { this.baseUrl = baseUrl; } public boolean isBearerOnly() { return bearerOnly; } public void setBearerOnly(boolean bearerOnly) { this.bearerOnly = bearerOnly; } public boolean isConsentRequired() { return consentRequired; } public void setConsentRequired(boolean consentRequired) { this.consentRequired = consentRequired; } public boolean isStandardFlowEnabled() { return standardFlowEnabled; } public void setStandardFlowEnabled(boolean standardFlowEnabled) { this.standardFlowEnabled = standardFlowEnabled; } public boolean isImplicitFlowEnabled() { return implicitFlowEnabled; } public void setImplicitFlowEnabled(boolean implicitFlowEnabled) { this.implicitFlowEnabled = implicitFlowEnabled; } public boolean isDirectAccessGrantsEnabled() { return directAccessGrantsEnabled; } public void setDirectAccessGrantsEnabled(boolean directAccessGrantsEnabled) { this.directAccessGrantsEnabled = directAccessGrantsEnabled; } public boolean isServiceAccountsEnabled() { return serviceAccountsEnabled; } public void setServiceAccountsEnabled(boolean serviceAccountsEnabled) { this.serviceAccountsEnabled = serviceAccountsEnabled; } public List<String> getDefaultRoles() { return defaultRoles; } public void setDefaultRoles(List<String> defaultRoles) { this.defaultRoles = defaultRoles; } public int getNodeReRegistrationTimeout() { return nodeReRegistrationTimeout; } public void setNodeReRegistrationTimeout(int nodeReRegistrationTimeout) { this.nodeReRegistrationTimeout = nodeReRegistrationTimeout; } public Map<String, Integer> getRegisteredNodes() { return registeredNodes; } public void setRegisteredNodes(Map<String, Integer> registeredNodes) { this.registeredNodes = registeredNodes; } public String getClientTemplate() { return clientTemplate; } public void setClientTemplate(String clientTemplate) { this.clientTemplate = clientTemplate; } public boolean isUseTemplateConfig() { return useTemplateConfig; } public void setUseTemplateConfig(boolean useTemplateConfig) { this.useTemplateConfig = useTemplateConfig; } public boolean isUseTemplateScope() { return useTemplateScope; } public void setUseTemplateScope(boolean useTemplateScope) { this.useTemplateScope = useTemplateScope; } public boolean isUseTemplateMappers() { return useTemplateMappers; } public void setUseTemplateMappers(boolean useTemplateMappers) { this.useTemplateMappers = useTemplateMappers; } }