Skip navigation links

Oracle BPEL Process Manager Client Java API Reference
10g Release 3 (10.1.3.1.0)

B28986-01


com.oracle.bpel.client
Class Configuration

java.lang.Object
  extended by com.oracle.bpel.client.Configuration


public class Configuration
extends java.lang.Object

Defines configuration parameters that may be passed into the BPEL server as NormalizedMessage properties.


Field Summary
static java.lang.String AUDIT_LEVEL
          The audit trail level to use for this instance.
static java.lang.String CALLBACK_MESSAGE_PAYLOAD_REF
           
static java.lang.String COMPLETION_PERSIST_LEVEL
          Determines what is to be persisted to the BPEL server datastore if an in-memory instance is selected to be persisted.
static java.lang.String COMPLETION_PERSIST_POLICY
          Datastore persistence policy for in-memory instances.
static java.lang.String CONVERSATION_ID
          External identifier for a BPEL process instance.
static java.lang.String CREATOR
          Creator of BPEL process instance.
static java.lang.String DEBUG
          Marker used to define if the instance is in debug mode.
static java.lang.String DELIVERY_PERSIST_POLICY
          Datastore persistence policy of invocation messages delivered to the BPEL server.
static java.lang.String EXPIRATION_DATE
          Optional parameter which defines the expiration date of this request.
static java.lang.String HINT_PAYLOAD_AS_DOCUMENT_REF
           
static java.lang.String INDEX1
          Associating an index with process instance
static java.lang.String INDEX2
          Associating an index with process instance
static java.lang.String INDEX3
          Associating an index with process instance
static java.lang.String INVOKE_MESSAGE_GUID
           
static java.lang.String INVOKE_MESSAGE_PAYLOAD_REF
           
static java.lang.String LOCAL_CONVERSATION_ID
          Local (internal) identifier for a BPEL process.
static java.lang.String MASTER_CONVERSATION_ID
          When creating an instance that will be a detail instance in a master/detail coordination, this property needs to be set in order to establish the master/detail relationship.
static java.lang.String METADATA
          Additional information about BPEL process instance.
static java.lang.String OPT_SOAP_SHORTCUT
           
static java.lang.String PARENT_ID
          The parent identifier for a process instance.
static java.lang.String PAYLOAD_HINT
           
static java.lang.String PRIORITY
          Allows the requestor to optionally specify the priority of the request.
static java.lang.String REPLY_TO_ADDRESS
          URL of the callback service.
static java.lang.String REPLY_TO_PORT_TYPE
          Port type of the callback service.
static java.lang.String REPLY_TO_SERVICE
          Service of the callback service.
static java.lang.String RETRY_FATAL_CONNECTION
           
static java.lang.String ROOT_ID
          The root identifier for a process instance tree.
static java.lang.String SERVICE_PROPERTIES
          For internal use.
static java.lang.String TEST_LOCATION
          unit test location.
static java.lang.String TEST_RUN_ID
          unit test run id.
static java.lang.String TEST_RUN_NAME
          unit test run name.
static java.lang.String TEST_SUITE
          unit test suite.
static java.lang.String TITLE
          Optional parameter used to define the title of the process instance.

 

Constructor Summary
Configuration()
           

 

Method Summary

 

Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

 

Field Detail

CONVERSATION_ID

public static final java.lang.String CONVERSATION_ID
External identifier for a BPEL process instance. Users may tag a newly created instance with a conversation id; this identifier may be used to query the status of the instance at a future date.
See Also:
Constant Field Values

LOCAL_CONVERSATION_ID

public static final java.lang.String LOCAL_CONVERSATION_ID
Local (internal) identifier for a BPEL process. This parameter is currently used by the BPEL server to identify a local instance.
See Also:
Constant Field Values

CREATOR

public static final java.lang.String CREATOR
Creator of BPEL process instance.
See Also:
Constant Field Values

METADATA

public static final java.lang.String METADATA
Additional information about BPEL process instance.
See Also:
Constant Field Values

EXPIRATION_DATE

public static final java.lang.String EXPIRATION_DATE
Optional parameter which defines the expiration date of this request. This allows the requestor to specify how long they are willing to wait for the completion of the process.
See Also:
Constant Field Values

PRIORITY

public static final java.lang.String PRIORITY
Allows the requestor to optionally specify the priority of the request. The semantic of the priority is opaque to the BPEL server.
See Also:
Constant Field Values

DEBUG

public static final java.lang.String DEBUG
Marker used to define if the instance is in debug mode.
See Also:
Constant Field Values

TITLE

public static final java.lang.String TITLE
Optional parameter used to define the title of the process instance. The title may be accessed at a future date via the IInstanceHandle.getTitle; changing the title can only be done from within the process in a bpelx:exec activity.
See Also:
Constant Field Values

REPLY_TO_ADDRESS

public static final java.lang.String REPLY_TO_ADDRESS
URL of the callback service.
See Also:
Constant Field Values

REPLY_TO_SERVICE

public static final java.lang.String REPLY_TO_SERVICE
Service of the callback service.
See Also:
Constant Field Values

REPLY_TO_PORT_TYPE

public static final java.lang.String REPLY_TO_PORT_TYPE
Port type of the callback service.
See Also:
Constant Field Values

DELIVERY_PERSIST_POLICY

public static final java.lang.String DELIVERY_PERSIST_POLICY
Datastore persistence policy of invocation messages delivered to the BPEL server. Normally, all invocation messages (ie. messages posted to the server via the delivery service) are persisted to the BPEL server datastore. Setting this parameter to off or false will prevent the invocation message from being stored.
See Also:
Constant Field Values

ROOT_ID

public static final java.lang.String ROOT_ID
The root identifier for a process instance tree. All sub-instances created from an instance will have the same root identifier.
See Also:
Constant Field Values

PARENT_ID

public static final java.lang.String PARENT_ID
The parent identifier for a process instance. A sub-instance will have an id to identify the instance that created it.
See Also:
Constant Field Values

AUDIT_LEVEL

public static final java.lang.String AUDIT_LEVEL
The audit trail level to use for this instance. The amount of audit events that are logged by an instance may be controlled; currently supported logging levels are:

The default value is "development". Audit logging may also be controlled at the domain level as well.

See Also:
Constant Field Values

COMPLETION_PERSIST_POLICY

public static final java.lang.String COMPLETION_PERSIST_POLICY
Datastore persistence policy for in-memory instances. In-memory instances are not persisted while they are active; however, once the instances are complete they may be persisted to the BPEL server datastore.

The supported values are:

The default value is "on".

See Also:
Constant Field Values

COMPLETION_PERSIST_LEVEL

public static final java.lang.String COMPLETION_PERSIST_LEVEL
Determines what is to be persisted to the BPEL server datastore if an in-memory instance is selected to be persisted.

The supported values are:

The default value is "all".

See Also:
Constant Field Values

SERVICE_PROPERTIES

public static final java.lang.String SERVICE_PROPERTIES
For internal use.
See Also:
Constant Field Values

TEST_SUITE

public static final java.lang.String TEST_SUITE
unit test suite. For use when initiating a unit test instance.
See Also:
Constant Field Values

TEST_LOCATION

public static final java.lang.String TEST_LOCATION
unit test location. For use when initiating a unit test instance.
See Also:
Constant Field Values

TEST_RUN_NAME

public static final java.lang.String TEST_RUN_NAME
unit test run name. For use when initiating a unit test instance.
See Also:
Constant Field Values

TEST_RUN_ID

public static final java.lang.String TEST_RUN_ID
unit test run id. For use when initiating a unit test instance.
See Also:
Constant Field Values

OPT_SOAP_SHORTCUT

public static final java.lang.String OPT_SOAP_SHORTCUT
See Also:
Constant Field Values

RETRY_FATAL_CONNECTION

public static final java.lang.String RETRY_FATAL_CONNECTION
See Also:
Constant Field Values

INDEX1

public static final java.lang.String INDEX1
Associating an index with process instance
See Also:
Constant Field Values

INDEX2

public static final java.lang.String INDEX2
Associating an index with process instance
See Also:
Constant Field Values

INDEX3

public static final java.lang.String INDEX3
Associating an index with process instance
See Also:
Constant Field Values

INVOKE_MESSAGE_GUID

public static final java.lang.String INVOKE_MESSAGE_GUID
See Also:
Constant Field Values

MASTER_CONVERSATION_ID

public static final java.lang.String MASTER_CONVERSATION_ID
When creating an instance that will be a detail instance in a master/detail coordination, this property needs to be set in order to establish the master/detail relationship.
See Also:
Constant Field Values

INVOKE_MESSAGE_PAYLOAD_REF

public static final java.lang.String INVOKE_MESSAGE_PAYLOAD_REF
See Also:
Constant Field Values

CALLBACK_MESSAGE_PAYLOAD_REF

public static final java.lang.String CALLBACK_MESSAGE_PAYLOAD_REF
See Also:
Constant Field Values

PAYLOAD_HINT

public static final java.lang.String PAYLOAD_HINT
See Also:
Constant Field Values

HINT_PAYLOAD_AS_DOCUMENT_REF

public static final java.lang.String HINT_PAYLOAD_AS_DOCUMENT_REF
See Also:
Constant Field Values

Constructor Detail

Configuration

public Configuration()

Skip navigation links

Oracle BPEL Process Manager Client Java API Reference
10g Release 3 (10.1.3.1.0)

B28986-01


Copyright © 2006, Oracle. All rights reserved.