Skip navigation links

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


oracle.bpel.services.workflow.user
Enum IUserMetadataService.UserTaskViewType

java.lang.Object
  extended by java.lang.Enum<IUserMetadataService.UserTaskViewType>
      extended by oracle.bpel.services.workflow.user.IUserMetadataService.UserTaskViewType

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IUserMetadataService.UserTaskViewType>
Enclosing interface:
IUserMetadataService

public static enum IUserMetadataService.UserTaskViewType
extends java.lang.Enum<IUserMetadataService.UserTaskViewType>

Enumeration specifying the different types of view that can be defined. Ideally, we'd use this enum in the objects passed to API methods - however, JAXB 1.0 does not support enums, so values are represented in JAXB objects as simple Strings. This enumeration can be used to set values on JAXB objects by using the valueOf method to get the String value corresponding to a particular enumeration value.


Enum Constant Summary
PROCESS_VIEW
          FOR FUTURE USE ONLY - intended for use in BPM product.
STANDARD_VIEW
          Standard Task view, whose definition is automatically available to all users.
STDPROCESS_VIEW
          FOR FUTURE USE ONLY - intended for use in BPM product.
VIEW
          Regular Task view that is private to the user that created the view, unless they explicitly grant access to the view to other users .

 

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

VIEW

public static final IUserMetadataService.UserTaskViewType VIEW
Regular Task view that is private to the user that created the view, unless they explicitly grant access to the view to other users . This view is to be used for querying Task instances.

STANDARD_VIEW

public static final IUserMetadataService.UserTaskViewType STANDARD_VIEW
Standard Task view, whose definition is automatically available to all users. View is part of the list of 'standard views' for task queries. Only admin users can maintain views of type STANDARD_VIEW. This view is to be used for querying Task instances.

PROCESS_VIEW

public static final IUserMetadataService.UserTaskViewType PROCESS_VIEW
FOR FUTURE USE ONLY - intended for use in BPM product. Regular BPM Process view that is private to the user that created the view, unless they explicitly grant access to the view to other users. This view is to be used for querying BPM Process instances.

STDPROCESS_VIEW

public static final IUserMetadataService.UserTaskViewType STDPROCESS_VIEW
FOR FUTURE USE ONLY - intended for use in BPM product. Standard BPM Process view, whose definition is automatically available to all users. View is part of the list of 'standard views' for process queries. Only admin users can maintain views of type STDPROCESS_VIEW. This view is to be used for querying BPM Process instances.

Method Detail

values

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

valueOf

public static IUserMetadataService.UserTaskViewType 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.6.3)
E10660-10


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