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 Object
getDefaultValue()
String
getHelpText()
String
getLabel()
String
getName()
List<String>
getOptions()
String
getType()
boolean
isReadOnly()
boolean
isSecret()
void
setDefaultValue(Object defaultValue)
void
setHelpText(String helpText)
void
setLabel(String label)
void
setName(String name)
void
setOptions(List<String> options)
void
setReadOnly(boolean readOnly)
void
setSecret(boolean secret)
void
setType(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()
-
-