com.bea.wli.worklist.api.events.data
Interface TaskUpdatePropertyEvent

All Superinterfaces:
Serializable, TaskEvent
All Known Subinterfaces:
TaskStepActionEvent

public interface TaskUpdatePropertyEvent
extends TaskEvent

BEA Systems, Inc.


Nested Class Summary
static class TaskUpdatePropertyEvent.ChangedProperty
          Class representing a single property that got changed.
 
Nested classes/interfaces inherited from interface com.bea.wli.worklist.api.events.data.TaskEvent
TaskEvent.Type
 
Method Summary
 boolean containsUserProperty(String propertyName)
          Return true if the give property is in the change list.
 boolean containsUserPropertyValue(String propertyName)
          Return true if the give property is in the change list & its value is populated in the ChangedProperty Object.
 List<TaskUpdatePropertyEvent.ChangedProperty> getChangedUserProperties()
          Get a list of properties that got changed.
 List<String> getChangedUserPropertyNames()
          Get a list of property names that got changed.
 
Methods inherited from interface com.bea.wli.worklist.api.events.data.TaskEvent
getAdminState, getAssigneeList, getCaller, getClaimant, getCreator, getEventType, getOwner, getServerName, getSummary, getTaskId, getTaskName, getTaskPlanId, getTimestamp, getWorkingState
 

Method Detail

getChangedUserPropertyNames

List<String> getChangedUserPropertyNames()
Get a list of property names that got changed.

Returns:

getChangedUserProperties

List<TaskUpdatePropertyEvent.ChangedProperty> getChangedUserProperties()
Get a list of properties that got changed. The list element object (ChangeProperty) contains the old and the new value.

Returns:

containsUserProperty

boolean containsUserProperty(String propertyName)
Return true if the give property is in the change list.

Returns:

containsUserPropertyValue

boolean containsUserPropertyValue(String propertyName)
Return true if the give property is in the change list & its value is populated in the ChangedProperty Object.

Returns: