com.ibm.bpe.api

Class AuthorizationType

  1. java.lang.Object
  2. extended bycom.ibm.bpe.api.AuthorizationType
All implemented interfaces:
java.io.Serializable

  1. public final class AuthorizationType
  2. extends java.lang.Object
  3. implements java.io.Serializable
This enumeration class defines symbolic constants for types of authorization. These values are used when authorization information about query tables is returned.
Since:
6.2.0.1
See Also:
Serialized Form

Field Summary

Modifier and Type Field and Description
  1. static
  2. java.lang.String
COPYRIGHT
  1. static
  2. AuthorizationType
INSTANCE_BASED
Symbolic constant for authorization type INSTANCE_BASED
  1. static
  2. AuthorizationType
NONE
Symbolic constant for authorization type NONE
  1. static
  2. AuthorizationType
ROLE_BASED
Symbolic constant for authorization type ROLE_BASED

Method Summary

Modifier and Type Method and Description
  1. static
  2. AuthorizationType
newAuthorizationType(java.lang.String typeString)
Factory method to create an authorization type by its string representation.
  1. java.lang.String
toString()
Returns a string representation of the authorization type.
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

Field Detail

  1. public static final java.lang.String COPYRIGHT
See Also:

NONE

  1. public static final AuthorizationType NONE
Symbolic constant for authorization type NONE

INSTANCE_BASED

  1. public static final AuthorizationType INSTANCE_BASED
Symbolic constant for authorization type INSTANCE_BASED

ROLE_BASED

  1. public static final AuthorizationType ROLE_BASED
Symbolic constant for authorization type ROLE_BASED

Method Detail

newAuthorizationType

  1. public static AuthorizationType newAuthorizationType( java.lang.String typeString)
Factory method to create an authorization type by its string representation. If the enum passed is not a valid type enumeration, null is returned.
Parameters:
typeString - The string representation of an authorization type.
Returns:
AuthorizationType - The AuthorizationType object that is created.

toString

  1. public java.lang.String toString( )
Returns a string representation of the authorization type.
Overrides:
toString in class java.lang.Object
Returns:
String - A string representation of the authorization type.