Package org.keycloak.representations.idm
Class ConfigPropertyRepresentation
- java.lang.Object
-
- org.keycloak.representations.idm.ConfigPropertyRepresentation
-
public class ConfigPropertyRepresentation extends Object
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
-
Constructor Summary
Constructors Constructor Description ConfigPropertyRepresentation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectgetDefaultValue()StringgetHelpText()StringgetLabel()StringgetName()List<String>getOptions()StringgetType()booleanisReadOnly()booleanisSecret()voidsetDefaultValue(Object defaultValue)voidsetHelpText(String helpText)voidsetLabel(String label)voidsetName(String name)voidsetOptions(List<String> options)voidsetReadOnly(boolean readOnly)voidsetSecret(boolean secret)voidsetType(String type)
-
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
getLabel
public String getLabel()
-
setLabel
public void setLabel(String label)
-
getType
public String getType()
-
setType
public void setType(String type)
-
getDefaultValue
public Object getDefaultValue()
-
setDefaultValue
public void setDefaultValue(Object defaultValue)
-
getHelpText
public String getHelpText()
-
setHelpText
public void setHelpText(String helpText)
-
isSecret
public boolean isSecret()
-
setSecret
public void setSecret(boolean secret)
-
setReadOnly
public void setReadOnly(boolean readOnly)
-
isReadOnly
public boolean isReadOnly()
-
-