com.ibm.j2ca.base
Interface TopLevelVerbs


public interface TopLevelVerbs

This interface acts simply as a container for constants representing the standard top-level verbs definable for after-image business objects.


Field Summary
static java.lang.String CREATE_TLV
          The top-level business object and all contained children were created, if this is an inbound event, or should be created in the EIS, if this is an outbound request.
static java.lang.String DELETE_TLV
          The top-level business object and any contained children were or should be deleted.
static java.lang.String UPDATE_TLV
          For inbound events, this verb indicates that the while the adapter detected that this business object was updated, it does not know whether any children were deleted.
static java.lang.String UPDATE_WITH_DELETE_TLV
          The top-level business object was or should be modified; this may include addition or deletion of children as well.
 

Field Detail

CREATE_TLV

public static final java.lang.String CREATE_TLV
The top-level business object and all contained children were created, if this is an inbound event, or should be created in the EIS, if this is an outbound request.

See Also:
Constant Field Values

UPDATE_TLV

public static final java.lang.String UPDATE_TLV
For inbound events, this verb indicates that the while the adapter detected that this business object was updated, it does not know whether any children were deleted. This often occurs in EIS where the trigger is provided with an after-image of the event without a before-image with which the trigger can compare to determine any removed child business objects.

See Also:
Constant Field Values

UPDATE_WITH_DELETE_TLV

public static final java.lang.String UPDATE_WITH_DELETE_TLV
The top-level business object was or should be modified; this may include addition or deletion of children as well. Any and all deleted children are known and reflected.

See Also:
Constant Field Values

DELETE_TLV

public static final java.lang.String DELETE_TLV
The top-level business object and any contained children were or should be deleted.

See Also:
Constant Field Values