Package com.ibm.di.api
Class ConfigEvent
- java.lang.Object
-
- com.ibm.di.api.ConfigEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class ConfigEvent extends java.lang.Object implements java.io.Serializable
Objects representing events occurring on configuration file.
Note: This class is for internal usage only. Any dependency from the end-user will not be supported. Changes to this class will happen without a warning.- Since:
- 7.2
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ConfigEvent.Type
-
Constructor Summary
Constructors Constructor Description ConfigEvent(ConfigEvent.Type t, java.lang.String i, java.lang.String u)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getIdentifier()
ConfigEvent.Type
getType()
java.lang.String
getUser()
-
-
-
Constructor Detail
-
ConfigEvent
public ConfigEvent(ConfigEvent.Type t, java.lang.String i, java.lang.String u)
-
-
Method Detail
-
getType
public ConfigEvent.Type getType()
- Returns:
- the type of the event
-
getIdentifier
public java.lang.String getIdentifier()
- Returns:
- the configuration file path relative to the Server API configurations directory or a solution name if the configuration has one defined.
-
getUser
public java.lang.String getUser()
- Returns:
- the username of the user performing the action on the configuration file.
-
-