Skip navigation links

Oracle Fusion Middleware
Workflow Services Java API Reference for Oracle SOA Suite
11g Release 1 (11.1.1)
E10660-03


oracle.bpel.services.workflow.client
Enum IWorkflowServiceClientConstants.CONNECTION_PROPERTY

java.lang.Object
  extended by java.lang.Enum<IWorkflowServiceClientConstants.CONNECTION_PROPERTY>
      extended by oracle.bpel.services.workflow.client.IWorkflowServiceClientConstants.CONNECTION_PROPERTY

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IWorkflowServiceClientConstants.CONNECTION_PROPERTY>
Enclosing interface:
IWorkflowServiceClientConstants

public static enum IWorkflowServiceClientConstants.CONNECTION_PROPERTY
extends java.lang.Enum<IWorkflowServiceClientConstants.CONNECTION_PROPERTY>

Enumeration defining the connnection property keys

  1. MODE is deprecated , the value is ignored.
  2. EJB_INITIAL_CONTEXT_FACTORY - the initial context factory for JNDI lookup. If empty, the context factory will be defaulted to oracle.j2ee.rmi.RMIInitialContextFactory
  3. EJB_PROVIDER_URL - the URL for JNDI lookup, e.g t3://<host>:<port>
  4. EJB_SECURITY_PRINCIPAL - the prinicipal to be used for JNDI lookup
  5. EJB_SECURITY_CREDENTIALS - the password to be used for the JNDI lookup
  6. SOAP_END_POINT_ROOT - the root for the soap end point. e.g. http://<host>:<port>
  7. SOAP_IDENTITY_PROPAGATION - if "SAML" specifined, SAML-token user propagation is used
  8. TASK_SERVICE_PARTICIPATE_IN_CLIENT_TRANSACTION - By default task service EJB will start a new transaction. This transaction will be rolled back when there is an exception. If there are no exceptions, this transaction will be commited. This default behavior can cause transaction issues if client code wants to roll back its own transaction and task service transaction together after task service invocation completes without exceptions. If a client application wants task service invocations to participate in transactions it created, then set this property to java.lang.String true in the input map or set the element taskService/participateInClientTransaction in wf_client_context.xml to true. Either way, if task service operation fails, it will mark the transaction for roll back.
  9. CLIENT_TYPE defines a client type. It can be either CLIENT_TYPE_SOAP or CLIENT_TYPE_REMOTE
  10. DISCOVERY_OF_END_POINT - is used when global JNDI is enabled and the clients discover the services without the user having to specify any additional properties. This mode can be used when the soa-infra application and the client application are co-located in the same WebLogic Server or otherwise.

Enum Constant Summary
CLIENT_TYPE
           
DISCOVERY_OF_END_POINT
           
EJB_INITIAL_CONTEXT_FACTORY
           
EJB_PROVIDER_URL
           
EJB_SECURITY_CREDENTIALS
           
EJB_SECURITY_PRINCIPAL
           
MANAGEMENT_POLICY_URI
           
MODE
          Deprecated. since 11.1.2
SECURITY_POLICY_URI
           
SOAP_END_POINT_ROOT
           
SOAP_IDENTITY_PROPAGATION
           
SOAP_IDENTITY_PROPAGATION_MODE
           
TASK_SERVICE_PARTICIPATE_IN_CLIENT_TRANSACTION
           
WSS_RECIPIENT_KEY_ALIAS
           

 

Method Summary
static IWorkflowServiceClientConstants.CONNECTION_PROPERTY valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IWorkflowServiceClientConstants.CONNECTION_PROPERTY[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.

 

Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

 

Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait

 

Enum Constant Detail

MODE

public static final IWorkflowServiceClientConstants.CONNECTION_PROPERTY MODE
Deprecated. since 11.1.2

EJB_INITIAL_CONTEXT_FACTORY

public static final IWorkflowServiceClientConstants.CONNECTION_PROPERTY EJB_INITIAL_CONTEXT_FACTORY

EJB_PROVIDER_URL

public static final IWorkflowServiceClientConstants.CONNECTION_PROPERTY EJB_PROVIDER_URL

EJB_SECURITY_PRINCIPAL

public static final IWorkflowServiceClientConstants.CONNECTION_PROPERTY EJB_SECURITY_PRINCIPAL

EJB_SECURITY_CREDENTIALS

public static final IWorkflowServiceClientConstants.CONNECTION_PROPERTY EJB_SECURITY_CREDENTIALS

SOAP_END_POINT_ROOT

public static final IWorkflowServiceClientConstants.CONNECTION_PROPERTY SOAP_END_POINT_ROOT

SOAP_IDENTITY_PROPAGATION

public static final IWorkflowServiceClientConstants.CONNECTION_PROPERTY SOAP_IDENTITY_PROPAGATION

SOAP_IDENTITY_PROPAGATION_MODE

public static final IWorkflowServiceClientConstants.CONNECTION_PROPERTY SOAP_IDENTITY_PROPAGATION_MODE

MANAGEMENT_POLICY_URI

public static final IWorkflowServiceClientConstants.CONNECTION_PROPERTY MANAGEMENT_POLICY_URI

SECURITY_POLICY_URI

public static final IWorkflowServiceClientConstants.CONNECTION_PROPERTY SECURITY_POLICY_URI

TASK_SERVICE_PARTICIPATE_IN_CLIENT_TRANSACTION

public static final IWorkflowServiceClientConstants.CONNECTION_PROPERTY TASK_SERVICE_PARTICIPATE_IN_CLIENT_TRANSACTION

CLIENT_TYPE

public static final IWorkflowServiceClientConstants.CONNECTION_PROPERTY CLIENT_TYPE

DISCOVERY_OF_END_POINT

public static final IWorkflowServiceClientConstants.CONNECTION_PROPERTY DISCOVERY_OF_END_POINT

WSS_RECIPIENT_KEY_ALIAS

public static final IWorkflowServiceClientConstants.CONNECTION_PROPERTY WSS_RECIPIENT_KEY_ALIAS

Method Detail

values

public static IWorkflowServiceClientConstants.CONNECTION_PROPERTY[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (IWorkflowServiceClientConstants.CONNECTION_PROPERTY c : IWorkflowServiceClientConstants.CONNECTION_PROPERTY.values())
    System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static IWorkflowServiceClientConstants.CONNECTION_PROPERTY valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

Skip navigation links

Oracle Fusion Middleware
Workflow Services Java API Reference for Oracle SOA Suite
11g Release 1 (11.1.1)
E10660-03


Copyright © 2009, Oracle and/or its affiliates. All rights reserved.