Package org.nuxeo.ecm.core.storage
Interface StateAccessor
- All Known Implementing Classes:
Node
,State
,State.StateDiff
public interface StateAccessor
Basic interface to get/put simple values or arrays from a state object.
- Since:
- 7.3
-
Method Summary
-
Method Details
-
getSingle
Gets a single value.- Parameters:
name
- the name- Returns:
- the value
- Throws:
PropertyException
-
getArray
Gets an array value.- Parameters:
name
- the name- Returns:
- the value
- Throws:
PropertyException
-
setSingle
Sets a single value.- Parameters:
name
- the namevalue
- the value- Throws:
PropertyException
-
setArray
Sets an array value.- Parameters:
name
- the namevalue
- the value- Throws:
PropertyException
-