public class TransactionalFeature
extends java.lang.Object
The following describes the affects of this feature with respect to being enabled or disabled:
Modifier and Type | Field | Description |
---|---|---|
static java.lang.String |
ID |
Constant value identifying the TransactionalFeature
|
Constructor | Description |
---|---|
TransactionalFeature() |
Create an
TransactionalFeature . |
TransactionalFeature(boolean enabled) |
Create an
TransactionalFeature |
TransactionalFeature(boolean enabled,
weblogic.wsee.wstx.wsat.Transactional.TransactionFlowType value,
weblogic.wsee.wstx.wsat.Transactional.Version version) |
Modifier and Type | Method | Description |
---|---|---|
java.util.Map<java.lang.String,java.lang.Boolean> |
getEnabledMap() |
|
weblogic.wsee.wstx.wsat.Transactional.TransactionFlowType |
getFlowType() |
Returns the default Transaction flow type for all operations.
|
weblogic.wsee.wstx.wsat.Transactional.TransactionFlowType |
getFlowType(java.lang.String operationName) |
Returns the Transaction flow type for a given operation.
|
java.util.Map<java.lang.String,weblogic.wsee.wstx.wsat.Transactional.TransactionFlowType> |
getFlowTypeMap() |
return a map listing the Transactiona flow options for operations.
|
java.lang.String |
getID() |
|
weblogic.wsee.wstx.wsat.Transactional.Version |
getVersion() |
Returns the version of WS-AT to be used.
|
boolean |
isEnabled(java.lang.String operationName) |
Returns
true if WS-AT is enabled on the given operation . |
boolean |
isExplicitMode() |
Transactional Feature has two modes, explicit Mode or implicit Mode.
|
void |
setEnabled(boolean enabled) |
Enable/disable this feature at port level
|
void |
setEnabled(java.lang.String operationName,
boolean enabled) |
Enable/disable this feature on a given operation
|
void |
setExplicitMode(boolean explicitMode) |
Change the Transactional Feature mode
|
void |
setFlowType(java.lang.String operationName,
weblogic.wsee.wstx.wsat.Transactional.TransactionFlowType flowType) |
Set the Transaction flow type for a given wsdl:operation.
|
void |
setFlowType(weblogic.wsee.wstx.wsat.Transactional.TransactionFlowType flowType) |
Set the default Transaction flow type for all operations.
|
void |
setVersion(weblogic.wsee.wstx.wsat.Transactional.Version version) |
set the version of WS-AT to be used.
|
public static final java.lang.String ID
public TransactionalFeature(boolean enabled, weblogic.wsee.wstx.wsat.Transactional.TransactionFlowType value, weblogic.wsee.wstx.wsat.Transactional.Version version)
public TransactionalFeature()
TransactionalFeature
.
The instance created will be enabled.public TransactionalFeature(boolean enabled)
TransactionalFeature
enabled
- specifies whether this feature should
be enabled or not.public weblogic.wsee.wstx.wsat.Transactional.TransactionFlowType getFlowType()
public weblogic.wsee.wstx.wsat.Transactional.TransactionFlowType getFlowType(java.lang.String operationName)
public void setFlowType(weblogic.wsee.wstx.wsat.Transactional.TransactionFlowType flowType)
flowType
- public void setFlowType(java.lang.String operationName, weblogic.wsee.wstx.wsat.Transactional.TransactionFlowType flowType)
operationName
- the local part of wsdl:oprationflowType
- Transaction flow typepublic java.lang.String getID()
public void setEnabled(boolean enabled)
enabled
- public void setEnabled(java.lang.String operationName, boolean enabled)
operationName
- the local part of operation.enabled
- public boolean isEnabled(java.lang.String operationName)
true
if WS-AT is enabled on the given operation .operationName
- the local part of wsdl:operationtrue
if and only if the WS-AT is enabled on the given operation .public weblogic.wsee.wstx.wsat.Transactional.Version getVersion()
public void setVersion(weblogic.wsee.wstx.wsat.Transactional.Version version)
version
- the version of WS-AT to be used.public java.util.Map<java.lang.String,weblogic.wsee.wstx.wsat.Transactional.TransactionFlowType> getFlowTypeMap()
public java.util.Map<java.lang.String,java.lang.Boolean> getEnabledMap()
public boolean isExplicitMode()
public void setExplicitMode(boolean explicitMode)
explicitMode
- whether set to explicit Mode.