Class ConfigurationEntryResponse
- java.lang.Object
-
- app.nzyme.plugin.rest.configuration.ConfigurationEntryResponse
-
public abstract class ConfigurationEntryResponse extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classConfigurationEntryResponse.Builder
-
Constructor Summary
Constructors Constructor Description ConfigurationEntryResponse()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static ConfigurationEntryResponse.Builderbuilder()abstract List<ConfigurationEntryConstraint>constraints()static ConfigurationEntryResponsecreate(String key, String keyHumanReadable, Object value, ConfigurationEntryValueType valueType, Object defaultValue, Boolean requiresRestart, List<ConfigurationEntryConstraint> constraints, String helpTag)abstract ObjectdefaultValue()abstract StringhelpTag()abstract Stringkey()abstract StringkeyHumanReadable()abstract BooleanrequiresRestart()abstract Objectvalue()abstract ConfigurationEntryValueTypevalueType()
-
-
-
Method Detail
-
key
public abstract String key()
-
keyHumanReadable
public abstract String keyHumanReadable()
-
valueType
@Nullable public abstract ConfigurationEntryValueType valueType()
-
requiresRestart
public abstract Boolean requiresRestart()
-
constraints
public abstract List<ConfigurationEntryConstraint> constraints()
-
create
public static ConfigurationEntryResponse create(String key, String keyHumanReadable, Object value, ConfigurationEntryValueType valueType, Object defaultValue, Boolean requiresRestart, List<ConfigurationEntryConstraint> constraints, String helpTag)
-
builder
public static ConfigurationEntryResponse.Builder builder()
-
-