Class ConfigurationEntryResponse.Builder
- java.lang.Object
-
- app.nzyme.plugin.rest.configuration.ConfigurationEntryResponse.Builder
-
- Enclosing class:
- ConfigurationEntryResponse
public abstract static class ConfigurationEntryResponse.Builder extends Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract ConfigurationEntryResponsebuild()abstract ConfigurationEntryResponse.Builderconstraints(List<ConfigurationEntryConstraint> constraints)abstract ConfigurationEntryResponse.BuilderdefaultValue(Object defaultValue)abstract ConfigurationEntryResponse.BuilderhelpTag(String helpTag)abstract ConfigurationEntryResponse.Builderkey(String key)abstract ConfigurationEntryResponse.BuilderkeyHumanReadable(String keyHumanReadable)abstract ConfigurationEntryResponse.BuilderrequiresRestart(Boolean requiresRestart)abstract ConfigurationEntryResponse.Buildervalue(Object value)abstract ConfigurationEntryResponse.BuildervalueType(ConfigurationEntryValueType valueType)
-
-
-
Method Detail
-
key
public abstract ConfigurationEntryResponse.Builder key(String key)
-
keyHumanReadable
public abstract ConfigurationEntryResponse.Builder keyHumanReadable(String keyHumanReadable)
-
value
public abstract ConfigurationEntryResponse.Builder value(Object value)
-
valueType
public abstract ConfigurationEntryResponse.Builder valueType(ConfigurationEntryValueType valueType)
-
defaultValue
public abstract ConfigurationEntryResponse.Builder defaultValue(Object defaultValue)
-
requiresRestart
public abstract ConfigurationEntryResponse.Builder requiresRestart(Boolean requiresRestart)
-
constraints
public abstract ConfigurationEntryResponse.Builder constraints(List<ConfigurationEntryConstraint> constraints)
-
helpTag
public abstract ConfigurationEntryResponse.Builder helpTag(String helpTag)
-
build
public abstract ConfigurationEntryResponse build()
-
-