org.apache.wss4j.stax.ext
Enum WSSConstants.UsernameTokenPasswordType

java.lang.Object
  extended by java.lang.Enum<WSSConstants.UsernameTokenPasswordType>
      extended by org.apache.wss4j.stax.ext.WSSConstants.UsernameTokenPasswordType
All Implemented Interfaces:
Serializable, Comparable<WSSConstants.UsernameTokenPasswordType>
Enclosing class:
WSSConstants

public static enum WSSConstants.UsernameTokenPasswordType
extends Enum<WSSConstants.UsernameTokenPasswordType>


Enum Constant Summary
PASSWORD_DIGEST
           
PASSWORD_NONE
           
PASSWORD_TEXT
           
 
Method Summary
 String getNamespace()
           
static WSSConstants.UsernameTokenPasswordType getUsernameTokenPasswordType(String namespace)
           
static WSSConstants.UsernameTokenPasswordType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static WSSConstants.UsernameTokenPasswordType[] 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

PASSWORD_NONE

public static final WSSConstants.UsernameTokenPasswordType PASSWORD_NONE

PASSWORD_TEXT

public static final WSSConstants.UsernameTokenPasswordType PASSWORD_TEXT

PASSWORD_DIGEST

public static final WSSConstants.UsernameTokenPasswordType PASSWORD_DIGEST
Method Detail

values

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

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

valueOf

public static WSSConstants.UsernameTokenPasswordType valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

getNamespace

public String getNamespace()

getUsernameTokenPasswordType

public static WSSConstants.UsernameTokenPasswordType getUsernameTokenPasswordType(String namespace)


Copyright © 2004–2014 The Apache Software Foundation. All rights reserved.