Package com.portal.app.cc.event
Class DeferralChangeEvent
java.lang.Object
java.util.EventObject
com.portal.app.cc.event.DeferralChangeEvent
- All Implemented Interfaces:
Serializable
The event broadcast when the deferred action items created, modified, deleted or executed in
Customer Center. The type of the change will be provided such as CREATED, MODIFIED, DELETED, EXECUTED.
The listeners is responsible to obtain the current deferral status.
- Version:
- %version: 3 % %date_modified: Fri Jun 15 13:30:36 2001 %
- Author:
- dachywan
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
static final int
static final int
static final int
Fields inherited from class java.util.EventObject
source
-
Constructor Summary
ConstructorsConstructorDescriptionDeferralChangeEvent
(Object source) Constructs a DeferralChangeEvent object with a default valueDeferralChangeEvent
(Object source, int type) Constructs a DeferralChangeEvent object.DeferralChangeEvent
(Object source, int type, PModelHandle[] hSchedules) Constructs a DeferralChangeEvent object. -
Method Summary
Methods inherited from class java.util.EventObject
getSource, toString
-
Field Details
-
CREATED
public static final int CREATED- See Also:
-
MODIFIED
public static final int MODIFIED- See Also:
-
DELETED
public static final int DELETED- See Also:
-
EXECUTED
public static final int EXECUTED- See Also:
-
-
Constructor Details
-
DeferralChangeEvent
Constructs a DeferralChangeEvent object with a default value- Parameters:
source
- the Object that is the source of the event (typicallythis
)
-
DeferralChangeEvent
Constructs a DeferralChangeEvent object.- Parameters:
source
- the Object that is the source of the event (typicallythis
)type
- the item been CREATED, MODIFIED, DELETED, or EXECUTED
-
DeferralChangeEvent
Constructs a DeferralChangeEvent object.- Parameters:
source
- the Object that is the source of the event (typicallythis
)type
- the item been CREATED, MODIFIED, DELETED, or EXECUTEDhSchedules
- [] the pModelHandle array of the scheduled items.
-
-
Method Details
-
getType
public int getType()Retrieves the type of the deferral that changed- Returns:
- The type of the status that changed
-
getScheduleObjects
-