wt.vc.sessioniteration
Class SessionIterationEvent

java.lang.Object
  extended by wt.events.KeyedEvent
      extended by wt.vc.sessioniteration.SessionIterationEvent
All Implemented Interfaces:
Serializable, wt.events.summary.SummarizedEvent

public class SessionIterationEvent
extends KeyedEvent
implements Serializable

Events dispatched by the SessionIterationService during SessionIterationService.createSessionIteration(wt.vc.sessioniteration.SessionEditedIteration, wt.org.WTPrincipal, java.lang.String), SessionIterationService#commitSessionIteraiton}, and deleteSessionIteration.

Supported API: true

Extendable: false

See Also:
Serialized Form

Field Summary
static String POST_COMMIT_SESSION_ITERATION
          This constant identifies the event that is dispatched by SessionIterationService.commitSessionIteration(wt.vc.sessioniteration.SessionEditedIteration, java.lang.String) immediately after the session iteration is commited and has become the latest iteration on the predecessor's branch.
static String POST_CREATE_SESSION_ITERATION
          This constant identifies the event that is dispatched by SessionIterationService.createSessionIteration(wt.vc.sessioniteration.SessionEditedIteration, wt.org.WTPrincipal, java.lang.String) immediately after the session iteration is stored.
static String POST_DELETE_SESSION_ITERATION
          This constant identifies the event that is dispatched by SessionIterationService.deleteSessionIteration(wt.vc.sessioniteration.SessionEditedIteration) immediately after the session iteration is deleted.
static String PRE_COMMIT_SESSION_ITERATION
          This constant identifies the event that is dispatched by SessionIterationService.commitSessionIteration(wt.vc.sessioniteration.SessionEditedIteration, java.lang.String) immediately before the session iteration is commited (to become the latest iteration on the predecessor's branch).
static String PRE_CREATE_SESSION_ITERATION
          This constant identifies the event that is dispatched by SessionIterationService.createSessionIteration(wt.vc.sessioniteration.SessionEditedIteration, wt.org.WTPrincipal, java.lang.String) immediately before the session iteration is stored.
static String PRE_DELETE_SESSION_ITERATION
          This constant identifies the event that is dispatched by SessionIterationService.deleteSessionIteration(wt.vc.sessioniteration.SessionEditedIteration) immediately before the session iteration is deleted.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

PRE_CREATE_SESSION_ITERATION

public static final String PRE_CREATE_SESSION_ITERATION
This constant identifies the event that is dispatched by SessionIterationService.createSessionIteration(wt.vc.sessioniteration.SessionEditedIteration, wt.org.WTPrincipal, java.lang.String) immediately before the session iteration is stored. The target of this event is the new session iteration. To get the original iteration, call VersionControlService.predecessorOf(wt.vc.Iterated) API.

Supported API: true

See Also:
Constant Field Values

POST_CREATE_SESSION_ITERATION

public static final String POST_CREATE_SESSION_ITERATION
This constant identifies the event that is dispatched by SessionIterationService.createSessionIteration(wt.vc.sessioniteration.SessionEditedIteration, wt.org.WTPrincipal, java.lang.String) immediately after the session iteration is stored. The target of this event is the new session iteration. To get the original iteration, call VersionControlService.predecessorOf(wt.vc.Iterated) API.

Supported API: true

See Also:
Constant Field Values

PRE_COMMIT_SESSION_ITERATION

public static final String PRE_COMMIT_SESSION_ITERATION
This constant identifies the event that is dispatched by SessionIterationService.commitSessionIteration(wt.vc.sessioniteration.SessionEditedIteration, java.lang.String) immediately before the session iteration is commited (to become the latest iteration on the predecessor's branch). The target of this event is the new (succeeding) session iteration. To get the original iteration, call VersionControlService.predecessorOf(wt.vc.Iterated) API.

Supported API: true

See Also:
Constant Field Values

POST_COMMIT_SESSION_ITERATION

public static final String POST_COMMIT_SESSION_ITERATION
This constant identifies the event that is dispatched by SessionIterationService.commitSessionIteration(wt.vc.sessioniteration.SessionEditedIteration, java.lang.String) immediately after the session iteration is commited and has become the latest iteration on the predecessor's branch. The target of this event is the new (succeeding) session iteration. To get the original iteration, call VersionControlService.predecessorOf(wt.vc.Iterated) API.

Supported API: true

See Also:
Constant Field Values

PRE_DELETE_SESSION_ITERATION

public static final String PRE_DELETE_SESSION_ITERATION
This constant identifies the event that is dispatched by SessionIterationService.deleteSessionIteration(wt.vc.sessioniteration.SessionEditedIteration) immediately before the session iteration is deleted. The target of this event is the session iteration. To get the original iteration, call VersionControlService.predecessorOf(wt.vc.Iterated) API.

Supported API: true

See Also:
Constant Field Values

POST_DELETE_SESSION_ITERATION

public static final String POST_DELETE_SESSION_ITERATION
This constant identifies the event that is dispatched by SessionIterationService.deleteSessionIteration(wt.vc.sessioniteration.SessionEditedIteration) immediately after the session iteration is deleted. The target of this event is the deleted session iteration. To get the original iteration, call VersionControlService.predecessorOf(wt.vc.Iterated) API.

Supported API: true

See Also:
Constant Field Values