/* * 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 ClientTemplateEntity extends AbstractIdentifiableEntity { protected String name; protected String description; protected String realmId; protected String protocol; protected boolean fullScopeAllowed; protected boolean bearerOnly; protected boolean consentRequired; protected boolean standardFlowEnabled; protected boolean implicitFlowEnabled; protected boolean directAccessGrantsEnabled; protected boolean serviceAccountsEnabled; protected boolean publicClient; protected boolean frontchannelLogout; protected List<String> scopeIds = new ArrayList<>(); protected List<ProtocolMapperEntity> protocolMappers = new ArrayList<>(); protected Map<String, String> attributes = new HashMap<>(); 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 String getRealmId() { return realmId; } public void setRealmId(String realmId) { this.realmId = realmId; } public List<ProtocolMapperEntity> getProtocolMappers() { return protocolMappers; } public void setProtocolMappers(List<ProtocolMapperEntity> protocolMappers) { this.protocolMappers = protocolMappers; } public String getProtocol() { return protocol; } public void setProtocol(String protocol) { this.protocol = protocol; } public boolean isFullScopeAllowed() { return fullScopeAllowed; } public void setFullScopeAllowed(boolean fullScopeAllowed) { this.fullScopeAllowed = fullScopeAllowed; } public List<String> getScopeIds() { return scopeIds; } public void setScopeIds(List<String> scopeIds) { this.scopeIds = scopeIds; } 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 boolean isPublicClient() { return publicClient; } public void setPublicClient(boolean publicClient) { this.publicClient = publicClient; } 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; } }