Content starts here AdminDefinedSecureResourceConfig.RedactionMode (AquaLogic Data Services Platform API)

com.bea.dsp.management.beans
Enum AdminDefinedSecureResourceConfig.RedactionMode

java.lang.Object
  extended by java.lang.Enum<AdminDefinedSecureResourceConfig.RedactionMode>
      extended by com.bea.dsp.management.beans.AdminDefinedSecureResourceConfig.RedactionMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<AdminDefinedSecureResourceConfig.RedactionMode>
Enclosing class:
AdminDefinedSecureResourceConfig

public static enum AdminDefinedSecureResourceConfig.RedactionMode
extends java.lang.Enum<AdminDefinedSecureResourceConfig.RedactionMode>

Defines the redaction mode to be used when owing to security access control some element (or attribute) cannot be returned to the client as is.


Enum Constant Summary
DEFAULTING
          When the element (or attribute) is mandatory, it can be replaced by some default value of the same type as the element (or attribute).
ENCRYPTION
          Another option would be to have the value of the element (or attribute) encrypted.
OMISSION
          Remove the element (or attribute) from the returned result.
 
Method Summary
static AdminDefinedSecureResourceConfig.RedactionMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AdminDefinedSecureResourceConfig.RedactionMode[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

OMISSION

public static final AdminDefinedSecureResourceConfig.RedactionMode OMISSION
Remove the element (or attribute) from the returned result. This applies to optional elements (or attribute) only. This option applies to elements of both simple and complex types.


DEFAULTING

public static final AdminDefinedSecureResourceConfig.RedactionMode DEFAULTING
When the element (or attribute) is mandatory, it can be replaced by some default value of the same type as the element (or attribute). This currently does not apply to element of complex type. Can be used for optional elements (or attribute) too.


ENCRYPTION

public static final AdminDefinedSecureResourceConfig.RedactionMode ENCRYPTION
Another option would be to have the value of the element (or attribute) encrypted. Since the encrypted value would be a string, this applies to element (or attribute) of string type only.

Method Detail

values

public static final AdminDefinedSecureResourceConfig.RedactionMode[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(AdminDefinedSecureResourceConfig.RedactionMode c : AdminDefinedSecureResourceConfig.RedactionMode.values())
        System.out.println(c);

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

valueOf

public static AdminDefinedSecureResourceConfig.RedactionMode 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


Copyright © 2007 BEA Systems Inc. All Rights Reserved.