Interface ModifiableModelLessComposite
- All Superinterfaces:
Composite,DataHolder,ModelLessComposite,ModelLessDataHolder,ModifiableComposite,ModifiableDataHolder,ModifiableModelLessDataHolder
- All Known Implementing Classes:
DefaultModifiableModelLessComposite
public interface ModifiableModelLessComposite
extends ModelLessComposite, ModifiableComposite, ModifiableModelLessDataHolder
Interface for modifiable model less composites
-
Method Summary
Modifier and TypeMethodDescriptiondefault ModifiableModelLessCompositegetComposite(String compositePath) Retrieves the composite at the given pathdefault ModifiableModelLessCompositegetComposite(String compositePath, boolean createNew) Retrieves the composite at the given pathRetrieves the default implementation of aDataHolderto usedefault Optional<? extends ModifiableModelLessDataHolder>Retrieves the optional parent of the currentDataHolderThere can be no parent if the currentDataHolderis the rootdefault ModifiableModelLessDataHolderRetrieves theDataHolderthat is the root of the current onedefault voidremoveValue(String dataPath) Removes the stored value of the data at the given pathdefault voidSets the value of the data at the given pathdefault voidSets the value of the data at the given pathdefault booleansynchronizeValues(Map<String, Object> values) Synchronizes the given values with the current onesMethods inherited from interface org.ametys.plugins.repository.data.holder.group.Composite
copyTo, dataToJSON, dataToSAX, hasValue, hasValueOrEmptyMethods inherited from interface org.ametys.plugins.repository.data.holder.DataHolder
copyTo, dataToJSON, dataToSAXMethods inherited from interface org.ametys.plugins.repository.data.holder.group.ModelLessComposite
dataToJSON, dataToSAX, getDataNames, getType, getValue, getValue, getValueOfType, getValueOfType, hasDifferences, hasValue, hasValue, hasValueOrEmpty, isMultiple, isMultipleMethods inherited from interface org.ametys.plugins.repository.data.holder.ModelLessDataHolder
dataToJSON, dataToSAX, getModelItemTypeExtensionPointMethods inherited from interface org.ametys.plugins.repository.data.holder.ModifiableDataHolder
getRepositoryData
-
Method Details
-
getComposite
default ModifiableModelLessComposite getComposite(String compositePath) throws IllegalArgumentException, BadItemTypeException, BadDataPathCardinalityException Description copied from interface:ModelLessDataHolderRetrieves the composite at the given path- Specified by:
getCompositein interfaceDataHolder- Specified by:
getCompositein interfaceModelLessComposite- Specified by:
getCompositein interfaceModelLessDataHolder- Specified by:
getCompositein interfaceModifiableDataHolder- Specified by:
getCompositein interfaceModifiableModelLessDataHolder- Parameters:
compositePath- path of the composite to retrieve- Returns:
- the composite or
nullif not exists or is empty - Throws:
IllegalArgumentException- if the given composite path is null or emptyBadItemTypeException- if the stored value at the given path is not a compositeBadDataPathCardinalityException- if the value of a part of the data path is multiple. Only the last part can be multiple
-
getComposite
default ModifiableModelLessComposite getComposite(String compositePath, boolean createNew) throws IllegalArgumentException, BadItemTypeException, BadDataPathCardinalityException Description copied from interface:ModifiableDataHolderRetrieves the composite at the given path- Specified by:
getCompositein interfaceModifiableDataHolder- Specified by:
getCompositein interfaceModifiableModelLessDataHolder- Parameters:
compositePath- path of the composite to retrievecreateNew-trueto create the composite if it does not exist,falseotherwise- Returns:
- the composite or
nullif createNew isfalseand value not exists or is empty - Throws:
IllegalArgumentException- if the given composite path is null or emptyBadItemTypeException- if the stored value at the given path is not a compositeBadDataPathCardinalityException- if the value of a part of the data path is multiple. Only the last part can be multiple
-
synchronizeValues
Description copied from interface:ModifiableModelLessDataHolderSynchronizes the given values with the current ones- Specified by:
synchronizeValuesin interfaceModifiableModelLessDataHolder- Parameters:
values- the values to synchronize- Returns:
trueif some values have changed,falseotherwise
-
setValue
default void setValue(String dataPath, Object value) throws IllegalArgumentException, UnknownTypeException, NotUniqueTypeException, UnknownDataException, BadDataPathCardinalityException Description copied from interface:ModifiableModelLessDataHolderSets the value of the data at the given path- Specified by:
setValuein interfaceModifiableModelLessDataHolder- Parameters:
dataPath- path of the datavalue- the value to set. To empty a value, useModifiableModelLessDataHolder.setValue(String, Object, String)with anullvalue- Throws:
IllegalArgumentException- if the given data path is null or emptyUnknownTypeException- if there is no available type compatible with the given value for this data holder's type extension pointNotUniqueTypeException- if there is more than one available types compatibles with the given value for this data holder's type extension pointUnknownDataException- if given the data path is composed of an inexisting groupBadDataPathCardinalityException- if the value of a part of the data path is multiple. Only the last part can be multiple
-
setValue
default void setValue(String dataPath, Object value, String dataTypeId) throws IllegalArgumentException, UnknownTypeException, BadItemTypeException, UnknownDataException, BadDataPathCardinalityException Description copied from interface:ModifiableModelLessDataHolderSets the value of the data at the given path- Specified by:
setValuein interfaceModifiableModelLessDataHolder- Parameters:
dataPath- path of the datavalue- the value to set. Givenullto empty the value.dataTypeId- type identifier of the data- Throws:
IllegalArgumentException- if the given data path is null or emptyUnknownTypeException- if the given type is not available for this data holder's type extension pointBadItemTypeException- if the given type doesn't match the given value to setUnknownDataException- if the given data path is composed of an inexisting groupBadDataPathCardinalityException- if the value of a part of the data path is multiple. Only the last part can be multiple
-
removeValue
default void removeValue(String dataPath) throws IllegalArgumentException, UnknownDataException, BadDataPathCardinalityException Description copied from interface:ModifiableDataHolderRemoves the stored value of the data at the given path- Specified by:
removeValuein interfaceModifiableDataHolder- Specified by:
removeValuein interfaceModifiableModelLessDataHolder- Parameters:
dataPath- path of the data- Throws:
IllegalArgumentException- if the given data path is null or emptyBadDataPathCardinalityException- if the value of a part of the data path is multiple. Only the last part can be multipleUnknownDataException
-
getParentDataHolder
Description copied from interface:DataHolderRetrieves the optional parent of the currentDataHolderThere can be no parent if the currentDataHolderis the root- Specified by:
getParentDataHolderin interfaceDataHolder- Specified by:
getParentDataHolderin interfaceModelLessComposite- Specified by:
getParentDataHolderin interfaceModelLessDataHolder- Specified by:
getParentDataHolderin interfaceModifiableDataHolder- Specified by:
getParentDataHolderin interfaceModifiableModelLessDataHolder- Returns:
- the parent of the current
DataHolder
-
getRootDataHolder
Description copied from interface:DataHolderRetrieves theDataHolderthat is the root of the current one- Specified by:
getRootDataHolderin interfaceDataHolder- Specified by:
getRootDataHolderin interfaceModelLessComposite- Specified by:
getRootDataHolderin interfaceModelLessDataHolder- Specified by:
getRootDataHolderin interfaceModifiableDataHolder- Specified by:
getRootDataHolderin interfaceModifiableModelLessDataHolder- Returns:
- the root
DataHolder
-
getDefaultDataHolder
Description copied from interface:CompositeRetrieves the default implementation of aDataHolderto use- Specified by:
getDefaultDataHolderin interfaceComposite- Specified by:
getDefaultDataHolderin interfaceModelLessComposite- Returns:
- the
DataHolder
-