com.evolveum.midpoint.xml.ns._public.resource.idconnector.configuration_1
Enum OperationType

java.lang.Object
  extended by java.lang.Enum<OperationType>
      extended by com.evolveum.midpoint.xml.ns._public.resource.idconnector.configuration_1.OperationType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<OperationType>

public enum OperationType
extends java.lang.Enum<OperationType>

Java class for OperationType.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="OperationType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="create"/>
     <enumeration value="update"/>
     <enumeration value="delete"/>
     <enumeration value="test"/>
     <enumeration value="scriptOnConnector"/>
     <enumeration value="scriptOnResource"/>
     <enumeration value="get"/>
     <enumeration value="authenticate"/>
     <enumeration value="search"/>
     <enumeration value="validate"/>
     <enumeration value="sync"/>
     <enumeration value="schema"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
AUTHENTICATE
          AuthenticationApiOp.class
CREATE
          CreateApiOp.class
DELETE
          DeleteApiOp.class
GET
          GetApiOp.class
SCHEMA
          SchemaApiOp.class
SCRIPT_ON_CONNECTOR
          ScriptOnConnectorApiOp.class
SCRIPT_ON_RESOURCE
          ScriptOnResourceApiOp.class
SEARCH
          SearchApiOp.class
SYNC
          SyncApiOp.class
TEST
          TestApiOp.class
UPDATE
          UpdateApiOp.class
VALIDATE
          ValidateApiOp.class
 
Method Summary
static OperationType fromValue(java.lang.String v)
           
 java.lang.String value()
           
static OperationType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OperationType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, 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 OperationType CREATE
CreateApiOp.class


UPDATE

public static final OperationType UPDATE
UpdateApiOp.class


DELETE

public static final OperationType DELETE
DeleteApiOp.class


TEST

public static final OperationType TEST
TestApiOp.class


SCRIPT_ON_CONNECTOR

public static final OperationType SCRIPT_ON_CONNECTOR
ScriptOnConnectorApiOp.class


SCRIPT_ON_RESOURCE

public static final OperationType SCRIPT_ON_RESOURCE
ScriptOnResourceApiOp.class


GET

public static final OperationType GET
GetApiOp.class


AUTHENTICATE

public static final OperationType AUTHENTICATE
AuthenticationApiOp.class


SEARCH

public static final OperationType SEARCH
SearchApiOp.class


VALIDATE

public static final OperationType VALIDATE
ValidateApiOp.class


SYNC

public static final OperationType SYNC
SyncApiOp.class


SCHEMA

public static final OperationType SCHEMA
SchemaApiOp.class

Method Detail

values

public static OperationType[] 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 (OperationType c : OperationType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static OperationType 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

value

public java.lang.String value()

fromValue

public static OperationType fromValue(java.lang.String v)


Copyright © 2011 evolveum. All Rights Reserved.