org.sourceid.saml20.adapter.idp.authn
Enum AbstractPasswordIdpAuthnAdapter.Mode

java.lang.Object
  extended by java.lang.Enum<AbstractPasswordIdpAuthnAdapter.Mode>
      extended by org.sourceid.saml20.adapter.idp.authn.AbstractPasswordIdpAuthnAdapter.Mode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<AbstractPasswordIdpAuthnAdapter.Mode>
Enclosing class:
AbstractPasswordIdpAuthnAdapter

public static enum AbstractPasswordIdpAuthnAdapter.Mode
extends java.lang.Enum<AbstractPasswordIdpAuthnAdapter.Mode>

An enumeration with the two valid modes of the adapter.

In basic mode the adapter interacts with the user via HTTP basic authentication.

In form mode the adapter interacts with the user via an HTML form.


Enum Constant Summary
BASIC_AUTHN
           
FORM_AUTHN
           
 
Method Summary
static AbstractPasswordIdpAuthnAdapter.Mode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AbstractPasswordIdpAuthnAdapter.Mode[] 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

BASIC_AUTHN

public static final AbstractPasswordIdpAuthnAdapter.Mode BASIC_AUTHN

FORM_AUTHN

public static final AbstractPasswordIdpAuthnAdapter.Mode FORM_AUTHN
Method Detail

values

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

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

valueOf

public static AbstractPasswordIdpAuthnAdapter.Mode 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 Ping Identity Corp. All rights reserved.