Class ContainerProcessor
- java.lang.Object
-
- com.evolveum.midpoint.schema.validator.processor.ContainerProcessor
-
- All Implemented Interfaces:
ProcessorMixin
,UpgradeObjectProcessor<ObjectType>
public class ContainerProcessor extends Object implements UpgradeObjectProcessor<ObjectType>
-
-
Constructor Summary
Constructors Constructor Description ContainerProcessor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UpgradePhase
getPhase()
UpgradePriority
getPriority()
UpgradeType
getType()
boolean
isApplicable(PrismObject<?> object, ItemPath path)
Checks if the processor is applicable for the object and path.boolean
process(PrismObject<ObjectType> object, ItemPath path)
Executes upgrade of item defined by path argument by modifying the object to correct state.String
upgradeDescription(PrismObject<ObjectType> object, ItemPath path)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.evolveum.midpoint.schema.validator.processor.ProcessorMixin
copyTransport, copyUserInterfaceFeature, getIdentifier, getItemParent, getRoleCatalog, matchObjectTypeAndPathTemplate, matchParentTypeAndItemName
-
Methods inherited from interface com.evolveum.midpoint.schema.validator.UpgradeObjectProcessor
getIdentifier
-
-
-
-
Method Detail
-
getPhase
public UpgradePhase getPhase()
- Specified by:
getPhase
in interfaceUpgradeObjectProcessor<ObjectType>
-
getPriority
public UpgradePriority getPriority()
- Specified by:
getPriority
in interfaceUpgradeObjectProcessor<ObjectType>
-
getType
public UpgradeType getType()
- Specified by:
getType
in interfaceUpgradeObjectProcessor<ObjectType>
-
upgradeDescription
public String upgradeDescription(PrismObject<ObjectType> object, ItemPath path)
- Specified by:
upgradeDescription
in interfaceUpgradeObjectProcessor<ObjectType>
- Parameters:
object
- before processing- Returns:
- Returns description of the upgrade if not done automatically. Should be single line (might end up in CSV) without any special characters. Certainly not semicolon (;) and double quote ("). Best approach is to put in short description and link to documentation.
-
isApplicable
public boolean isApplicable(PrismObject<?> object, ItemPath path)
Description copied from interface:UpgradeObjectProcessor
Checks if the processor is applicable for the object and path. Most often whether object is instance of proper ObjectType and item at the path exists.- Specified by:
isApplicable
in interfaceUpgradeObjectProcessor<ObjectType>
-
process
public boolean process(PrismObject<ObjectType> object, ItemPath path) throws Exception
Description copied from interface:UpgradeObjectProcessor
Executes upgrade of item defined by path argument by modifying the object to correct state.- Specified by:
process
in interfaceUpgradeObjectProcessor<ObjectType>
- Throws:
Exception
-
-