Package com.ibm.di.config.interfaces
Class MetamergeConfigChange
- java.lang.Object
-
- com.ibm.di.config.interfaces.MetamergeConfigChange
-
public class MetamergeConfigChange extends java.lang.ObjectA class describing a change that has happened to the configuration. This is used by the Configuration Editor to update the screen.
-
-
Field Summary
Fields Modifier and Type Field Description static intBEGIN_CHANGESThere will be a batch of changes to this source, so no need to update yetstatic intEND_CHANGESFinished doing the batch of changesstatic intMCC_ADDConfig object was addedstatic intMCC_DELETEConfig object was deletedstatic intMCC_MODIFYConfig object was modifiedstatic intMCC_REMOVEAttribute was removedstatic intMCC_REPLACEAttribute was replacedstatic intMCC_SETAttribute was addedstatic intMCC_UNSPECIFIEDUnknown change event
-
Constructor Summary
Constructors Constructor Description MetamergeConfigChange(java.lang.Object source, java.lang.Object key, int operation)MetamergeConfigChange(java.lang.Object source, java.lang.Object key, int operation, java.lang.Object userObject)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ObjectgetKey()intgetOperation()java.lang.ObjectgetSource()java.lang.ObjectgetUserObject()java.lang.StringtoString()
-
-
-
Field Detail
-
MCC_UNSPECIFIED
public static final int MCC_UNSPECIFIED
Unknown change event- See Also:
- Constant Field Values
-
MCC_REMOVE
public static final int MCC_REMOVE
Attribute was removed- See Also:
- Constant Field Values
-
MCC_SET
public static final int MCC_SET
Attribute was added- See Also:
- Constant Field Values
-
MCC_ADD
public static final int MCC_ADD
Config object was added- See Also:
- Constant Field Values
-
MCC_MODIFY
public static final int MCC_MODIFY
Config object was modified- See Also:
- Constant Field Values
-
MCC_DELETE
public static final int MCC_DELETE
Config object was deleted- See Also:
- Constant Field Values
-
MCC_REPLACE
public static final int MCC_REPLACE
Attribute was replaced- See Also:
- Constant Field Values
-
BEGIN_CHANGES
public static final int BEGIN_CHANGES
There will be a batch of changes to this source, so no need to update yet- See Also:
- Constant Field Values
-
END_CHANGES
public static final int END_CHANGES
Finished doing the batch of changes- See Also:
- Constant Field Values
-
-