persistent class EnsLib.ebXML.CPA
extends %Persistent, %XML.Adaptor
Represents a Contract Properties Agreement instance
property AckRequested
as %String(VALUELIST=",always,never");
AckRequested (ebMS 6.4.2)
property Actor
as %String(MAXLEN=256);
property CPAId
as %String(MAXLEN=256,MINLEN=1) [ Required ];
IDKey
property DuplicateElimination
as %String(VALUELIST=",always,never");
DuplicateElimination (ebMS 6.4.1)
property PersistDuration
as %String;
PersistDuration (ebMS 6.4.6)
property Retries
as %Integer(MINVAL=0);
Retries (ebXML 6.4.3)
property RetryInterval
as %String;
RetryInterval (ebMS 6.4.4)
property Status
as %String(DISPLAYLIST=",Active,Disabled",VALUELIST=",active,disabled") [ Required ];
CPA Status
property SyncReplyMode
as %String(VALUELIST=",mshSignalsOnly,signalsOnly,signalsAndResponse,responseOnly,none");
SyncReplyMode (ebMS 6.4.7):
mshSignalsOnly - Only MSH acknowledgment/error documents will be sent over a synchronous connection. The business response and business signal documents will be returned asynchronously.
signalsOnly - Only Business signal documents and MSH documents will be sent over a synchronous connection. The business response will be returned asynchronously.
signalsAndResponse - Business responses and business signals documents will be sent over a synchronous connection.
responseOnly - Only business responses and MSH documents will be sent over a synchronous connection. Business signal documents will not be returned.
none - No synchronous response documents from the receiver.
property TimeToLive
as %String;
TimeToLive (ebMS 6.4.5)
property Version
as %Integer(MINVAL=0) [ Required ];
Version
index (CPAIdIndex on CPAId,Version) [IdKey,Unique];
index (StatusIndex on Status);