Package com.ibm.di.config.interfaces
Class MetamergeConfigChange
- java.lang.Object
-
- com.ibm.di.config.interfaces.MetamergeConfigChange
-
public class MetamergeConfigChange extends java.lang.Object
A 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 int
BEGIN_CHANGES
There will be a batch of changes to this source, so no need to update yetstatic int
END_CHANGES
Finished doing the batch of changesstatic int
MCC_ADD
Config object was addedstatic int
MCC_DELETE
Config object was deletedstatic int
MCC_MODIFY
Config object was modifiedstatic int
MCC_REMOVE
Attribute was removedstatic int
MCC_REPLACE
Attribute was replacedstatic int
MCC_SET
Attribute was addedstatic int
MCC_UNSPECIFIED
Unknown 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.Object
getKey()
int
getOperation()
java.lang.Object
getSource()
java.lang.Object
getUserObject()
java.lang.String
toString()
-
-
-
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
-
-