Package org.cyclos.server.utils
Interface ObjectParameterStorage
-
- All Superinterfaces:
ParameterStorage
- All Known Subinterfaces:
ScriptObjectStorage
- All Known Implementing Classes:
CustomWizardExecutionStorage,EntityBackedParameterStorage,JacksonParameterStorage
public interface ObjectParameterStorage extends ParameterStorage
AParameterStoragethat also supports objects
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectgetObject(String name)Returns a parameter as an object value, or null if the parameter is not setvoidsetObject(String name, Object value)Sets the parameter with the given name as an object value-
Methods inherited from interface org.cyclos.utils.ParameterStorage
addBoolean, addDate, addDecimal, addEnum, addInteger, addLong, addString, getBoolean, getDate, getDecimal, getDecimalList, getEnum, getEnumList, getInteger, getIntegerList, getLong, getLongList, getNames, getString, getStringList, isSet, remove, setBoolean, setDate, setDecimal, setEnum, setInteger, setLong, setString
-
-