Skip navigation links

Oracle® Data Integrator Java API Reference
11g Release 1 (11.1.1.6.0)

E17060-03


oracle.odi.domain.topology
Enum OdiTechnology.ExecutionChannel

java.lang.Object
  extended by java.lang.Enum<OdiTechnology.ExecutionChannel>
      extended by oracle.odi.domain.topology.OdiTechnology.ExecutionChannel

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<OdiTechnology.ExecutionChannel>
Enclosing class:
OdiTechnology

public static enum OdiTechnology.ExecutionChannel
extends java.lang.Enum<OdiTechnology.ExecutionChannel>

Type safe enum representing the execution channel applying to an OdiTechnology. Possible value is one of the following:

Since:
11.1.1.3.0

Enum Constant Summary
AXIS2
          Execution channel involving an AXIS2 WebService container.
BSF
          Execution channel involving scripting language through Bean Scripting Framework.
CONNECTOR
          Execution channel involving a custom Java connector.
JAXWS
          Execution channel involving a JAXWS WebService container.
JDBC
          Execution channel involving a JDBC driver.
JMS_QUEUE
          Execution channel involving a JMS queue for binary or text messages.
JMS_TOPIC
          Execution channel involving a JMS topic for binary or text messages.
ODI
          Execution channel involving an ODI native command.
OS
          Execution channel involving an OS command.
XML_QUEUE
          Execution channel involving a JMS queue for XML messages.
XML_TOPIC
          Execution channel involving a JMS queue for XML messages.

 

Method Summary
static OdiTechnology.ExecutionChannel valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OdiTechnology.ExecutionChannel[] 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

JDBC

public static final OdiTechnology.ExecutionChannel JDBC
Execution channel involving a JDBC driver.

OS

public static final OdiTechnology.ExecutionChannel OS
Execution channel involving an OS command.

ODI

public static final OdiTechnology.ExecutionChannel ODI
Execution channel involving an ODI native command.

JMS_QUEUE

public static final OdiTechnology.ExecutionChannel JMS_QUEUE
Execution channel involving a JMS queue for binary or text messages.

JMS_TOPIC

public static final OdiTechnology.ExecutionChannel JMS_TOPIC
Execution channel involving a JMS topic for binary or text messages.

XML_QUEUE

public static final OdiTechnology.ExecutionChannel XML_QUEUE
Execution channel involving a JMS queue for XML messages.

XML_TOPIC

public static final OdiTechnology.ExecutionChannel XML_TOPIC
Execution channel involving a JMS queue for XML messages.

CONNECTOR

public static final OdiTechnology.ExecutionChannel CONNECTOR
Execution channel involving a custom Java connector.

BSF

public static final OdiTechnology.ExecutionChannel BSF
Execution channel involving scripting language through Bean Scripting Framework.

AXIS2

public static final OdiTechnology.ExecutionChannel AXIS2
Execution channel involving an AXIS2 WebService container.

JAXWS

public static final OdiTechnology.ExecutionChannel JAXWS
Execution channel involving a JAXWS WebService container.

Method Detail

values

public static OdiTechnology.ExecutionChannel[] 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 (OdiTechnology.ExecutionChannel c : OdiTechnology.ExecutionChannel.values())
    System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static OdiTechnology.ExecutionChannel 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® Data Integrator Java API Reference
11g Release 1 (11.1.1.6.0)

E17060-03


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