Class ConnectorEvent
- java.lang.Object
-
- java.util.EventObject
-
- org.identityconnectors.common.event.ConnectorEvent
-
- All Implemented Interfaces:
Serializable
public class ConnectorEvent extends EventObject
NOTICE: This package is an early specification of the Events API for 1.2.x.x version. Use carefully, this package may change before the final 1.2.0.0 release.- Since:
- 1.4
- Author:
- Laszlo Hordos
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
BUNDLE
static String
BUNDLE_ID
static String
BUNDLE_SYMBOLICNAME
static String
BUNDLE_VERSION
static String
CONNECTOR_BUNDLE_NAME
static String
CONNECTOR_NAME
static String
CONNECTOR_REGISTERED
static String
CONNECTOR_UNREGISTERING
static String
CONNECTOR_VERSION
-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description ConnectorEvent(String topic, ConnectorKey source)
Constructs a prototypical Event.ConnectorEvent(ConnectorEvent source)
Copy Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Object>
getProperties()
String
getTopic()
-
Methods inherited from class java.util.EventObject
getSource, toString
-
-
-
-
Field Detail
-
CONNECTOR_REGISTERED
public static final String CONNECTOR_REGISTERED
- See Also:
- Constant Field Values
-
CONNECTOR_UNREGISTERING
public static final String CONNECTOR_UNREGISTERING
- See Also:
- Constant Field Values
-
BUNDLE_SYMBOLICNAME
public static final String BUNDLE_SYMBOLICNAME
- See Also:
- Constant Field Values
-
BUNDLE_ID
public static final String BUNDLE_ID
- See Also:
- Constant Field Values
-
BUNDLE
public static final String BUNDLE
- See Also:
- Constant Field Values
-
BUNDLE_VERSION
public static final String BUNDLE_VERSION
- See Also:
- Constant Field Values
-
CONNECTOR_BUNDLE_NAME
public static final String CONNECTOR_BUNDLE_NAME
- See Also:
- Constant Field Values
-
CONNECTOR_VERSION
public static final String CONNECTOR_VERSION
- See Also:
- Constant Field Values
-
CONNECTOR_NAME
public static final String CONNECTOR_NAME
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ConnectorEvent
public ConnectorEvent(String topic, ConnectorKey source)
Constructs a prototypical Event.- Parameters:
source
- The object on which the Event initially occurred.- Throws:
IllegalArgumentException
- if source is null.
-
ConnectorEvent
public ConnectorEvent(ConnectorEvent source)
Copy Constructor.- Parameters:
source
-
-
-