org.apache.directory.api.ldap.model.constants
Enum LdapSecurityConstants

java.lang.Object
  extended by java.lang.Enum<LdapSecurityConstants>
      extended by org.apache.directory.api.ldap.model.constants.LdapSecurityConstants
All Implemented Interfaces:
Serializable, Comparable<LdapSecurityConstants>

public enum LdapSecurityConstants
extends Enum<LdapSecurityConstants>

An enum to store all the security constants used in the server

Author:
Apache Directory Project

Enum Constant Summary
HASH_METHOD_CRYPT
          The crypt encryption method
HASH_METHOD_MD5
          The MD5 encryption method
HASH_METHOD_SHA
          The SHA encryption method
HASH_METHOD_SHA256
          The SHA-256 encryption method
HASH_METHOD_SHA384
          The SHA-384 encryption method
HASH_METHOD_SHA512
          The SHA-512 encryption method
HASH_METHOD_SMD5
          The Salter MD5 encryption method
HASH_METHOD_SSHA
          The Salted SHA encryption method
HASH_METHOD_SSHA256
          The salted SHA-256 encryption method
HASH_METHOD_SSHA384
          The salted SHA-384 encryption method
HASH_METHOD_SSHA512
          The salted SHA-512 encryption method
 
Method Summary
static LdapSecurityConstants getAlgorithm(String name)
          Get the associated constant from a string
 String getName()
           
static LdapSecurityConstants valueOf(String name)
          Returns the enum constant of this type with the specified name.
static LdapSecurityConstants[] 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

HASH_METHOD_SHA

public static final LdapSecurityConstants HASH_METHOD_SHA
The SHA encryption method


HASH_METHOD_SSHA

public static final LdapSecurityConstants HASH_METHOD_SSHA
The Salted SHA encryption method


HASH_METHOD_MD5

public static final LdapSecurityConstants HASH_METHOD_MD5
The MD5 encryption method


HASH_METHOD_SMD5

public static final LdapSecurityConstants HASH_METHOD_SMD5
The Salter MD5 encryption method


HASH_METHOD_CRYPT

public static final LdapSecurityConstants HASH_METHOD_CRYPT
The crypt encryption method


HASH_METHOD_SHA256

public static final LdapSecurityConstants HASH_METHOD_SHA256
The SHA-256 encryption method


HASH_METHOD_SSHA256

public static final LdapSecurityConstants HASH_METHOD_SSHA256
The salted SHA-256 encryption method


HASH_METHOD_SHA384

public static final LdapSecurityConstants HASH_METHOD_SHA384
The SHA-384 encryption method


HASH_METHOD_SSHA384

public static final LdapSecurityConstants HASH_METHOD_SSHA384
The salted SHA-384 encryption method


HASH_METHOD_SHA512

public static final LdapSecurityConstants HASH_METHOD_SHA512
The SHA-512 encryption method


HASH_METHOD_SSHA512

public static final LdapSecurityConstants HASH_METHOD_SSHA512
The salted SHA-512 encryption method

Method Detail

values

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

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

valueOf

public static LdapSecurityConstants 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

getName

public String getName()
Returns:
the name associated with the constant.

getAlgorithm

public static LdapSecurityConstants getAlgorithm(String name)
Get the associated constant from a string

Parameters:
name - The algorithm's name
Returns:
The associated constant


Copyright © 2003-2013 The Apache Software Foundation. All Rights Reserved.