atg.userprofiling
Interface RepositoryUpdateEvent

All Known Implementing Classes:
AccessAllowedEvent, AccessDeniedEvent, PageEvent, SessionEvent

public interface RepositoryUpdateEvent

Concerning events used with the default action handlers, some configurations want several updates to the same property (a RepositoryItem) to be done at the same time, instead of individually. This interface is intended to allow that property to be identified (so to speak) so that updates to the property may be commited at the same time. The action handler will perform each update on the RepositoryItem but only commit those updates once all of them have been added in.


Field Summary
static java.lang.String CLASS_VERSION
          Class version string
 
Method Summary
 RepositoryItem getUpdatedItem()
          The item whose updates should be commited after all the updates have been added to the item.
 void setUpdatedItem(RepositoryItem pValue)
          The item whose updates should be commited after all the updates have been added to the item.
 

Field Detail

CLASS_VERSION

static final java.lang.String CLASS_VERSION
Class version string

See Also:
Constant Field Values
Method Detail

setUpdatedItem

void setUpdatedItem(RepositoryItem pValue)
The item whose updates should be commited after all the updates have been added to the item.


getUpdatedItem

RepositoryItem getUpdatedItem()
The item whose updates should be commited after all the updates have been added to the item.