Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Service Bus
11g Release 1 (11.1.1.3)

E15033-01


com.bea.wli.sb.management.importexport
Enum ALSBImportOperation.Operation

java.lang.Object
  extended by java.lang.Enum<ALSBImportOperation.Operation>
      extended by com.bea.wli.sb.management.importexport.ALSBImportOperation.Operation

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ALSBImportOperation.Operation>
Enclosing class:
ALSBImportOperation

public static enum ALSBImportOperation.Operation
extends java.lang.Enum<ALSBImportOperation.Operation>

Enum Constant Summary
Create
          Indicates that the resource is imported by creating it.
Delete
          Indicates that the resource is deleted in the importing domain.
Skip
          Indicates that the resource is skipped meaning the resource is not touched in the importing domain.
Update
          Indicates that the resource is imported by updating it.

 

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

Create

public static final ALSBImportOperation.Operation Create
Indicates that the resource is imported by creating it. This operation is performed when the jar file contains a resource that does not exist in the domain.

Update

public static final ALSBImportOperation.Operation Update
Indicates that the resource is imported by updating it. This operation is performed when the jar file contains a resource that already exists in the domain.

Delete

public static final ALSBImportOperation.Operation Delete
Indicates that the resource is deleted in the importing domain. This is the default operation when the project is exported in its entirety and the resource exists in the target domain but not in the jar file

Skip

public static final ALSBImportOperation.Operation Skip
Indicates that the resource is skipped meaning the resource is not touched in the importing domain. This is the default operation if the jar file was exported at the resource level, and a resource that exists in the target domain, does not exist in the jar file.

Method Detail

values

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

valueOf

public static ALSBImportOperation.Operation 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 Java API Reference for Oracle Service Bus
11g Release 1 (11.1.1.3)

E15033-01


Copyright © 2008, 2010, Oracle. All rights reserved.