2015-12-11 15:31:42 +00:00
|
|
|
package org.keycloak.models;
|
|
|
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author <a href="mailto:bill@burkecentral.com">Bill Burke</a>
|
|
|
|
* @version $Revision: 1 $
|
|
|
|
*/
|
2015-12-18 22:15:27 +00:00
|
|
|
public interface ClientTemplateModel extends ProtocolMapperContainerModel, ScopeContainerModel {
|
2015-12-11 15:31:42 +00:00
|
|
|
String getId();
|
|
|
|
|
|
|
|
String getName();
|
|
|
|
|
|
|
|
RealmModel getRealm();
|
|
|
|
void setName(String name);
|
|
|
|
|
|
|
|
String getDescription();
|
|
|
|
|
|
|
|
void setDescription(String description);
|
|
|
|
|
|
|
|
String getProtocol();
|
|
|
|
void setProtocol(String protocol);
|
|
|
|
|
2015-12-22 22:50:03 +00:00
|
|
|
void setAttribute(String name, String value);
|
|
|
|
void removeAttribute(String name);
|
|
|
|
String getAttribute(String name);
|
|
|
|
Map<String, String> getAttributes();
|
|
|
|
|
|
|
|
boolean isFrontchannelLogout();
|
|
|
|
void setFrontchannelLogout(boolean flag);
|
|
|
|
|
|
|
|
boolean isBearerOnly();
|
|
|
|
void setBearerOnly(boolean only);
|
|
|
|
|
|
|
|
boolean isPublicClient();
|
|
|
|
void setPublicClient(boolean flag);
|
|
|
|
|
|
|
|
boolean isConsentRequired();
|
|
|
|
void setConsentRequired(boolean consentRequired);
|
|
|
|
|
|
|
|
boolean isStandardFlowEnabled();
|
|
|
|
void setStandardFlowEnabled(boolean standardFlowEnabled);
|
|
|
|
|
|
|
|
boolean isImplicitFlowEnabled();
|
|
|
|
void setImplicitFlowEnabled(boolean implicitFlowEnabled);
|
|
|
|
|
|
|
|
boolean isDirectAccessGrantsEnabled();
|
|
|
|
void setDirectAccessGrantsEnabled(boolean directAccessGrantsEnabled);
|
|
|
|
|
|
|
|
boolean isServiceAccountsEnabled();
|
|
|
|
void setServiceAccountsEnabled(boolean serviceAccountsEnabled);
|
|
|
|
|
|
|
|
|
2015-12-11 15:31:42 +00:00
|
|
|
|
|
|
|
}
|