Class MdibStoragePreprocessingChain
- java.lang.Object
-
- org.somda.sdc.biceps.common.storage.MdibStoragePreprocessingChain
-
public class MdibStoragePreprocessingChain extends Object
Provides a processing chain that is supposed to be run before any interaction with an MdibStorage instance.The MdibStoragePreprocessingChain offers processing functions for description and state change sets.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidprocessDescriptionModifications(MdibDescriptionModifications modifications)Accepts a set of description modifications and applies them on every available description chain segment.voidprocessStateModifications(MdibStateModifications modifications)Accepts a set of state modifications and applies them on every available state chain segment.
-
-
-
Method Detail
-
processDescriptionModifications
public void processDescriptionModifications(MdibDescriptionModifications modifications) throws PreprocessingException
Accepts a set of description modifications and applies them on every available description chain segment.- Parameters:
modifications- the modification to pass to the chain segments.- Throws:
PreprocessingException- in case a chain segment fails.
-
processStateModifications
public void processStateModifications(MdibStateModifications modifications) throws PreprocessingException
Accepts a set of state modifications and applies them on every available state chain segment.- Parameters:
modifications- the modification to pass to the chain segments.- Throws:
PreprocessingException- in case a chain segment fails.
-
-