org.jasypt.hibernate.type
Class ParameterNaming

java.lang.Object
  extended by org.jasypt.hibernate.type.ParameterNaming

public final class ParameterNaming
extends java.lang.Object

Constant names of the parameters that can be used by a jasypt type's typedef declaration in a Hibernate mapping.

Since:
1.4 (was org.jasypt.hibernate.ParameterNaming since 1.0)
Author:
Daniel Fernández

Field Summary
static java.lang.String ALGORITHM
           The encryption algorithm.
static java.lang.String DECIMAL_SCALE
           The scale (numbers after the decimal point) to be used when storing decimal numbers.
static java.lang.String ENCRYPTOR_NAME
           The registered name of an encryptor previously registered at the HibernatePBEEncryptorRegistry.
static java.lang.String KEY_OBTENTION_ITERATIONS
           The number of hashing iterations to be applied for obtaining the encryption key.
static java.lang.String PASSWORD
           The encryption password.
static java.lang.String PROVIDER_NAME
           The name of the JCE security provider we want to get the algorithm from (if it is no the default one.
static java.lang.String STORE_TIME_ZONE
           Whether the calendar time zone should be stored with the date or not.
static java.lang.String STRING_OUTPUT_TYPE
           The type of String output ("base64" (default), "hexadecimal") to be generated.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

ENCRYPTOR_NAME

public static final java.lang.String ENCRYPTOR_NAME

The registered name of an encryptor previously registered at the HibernatePBEEncryptorRegistry.

Value = encryptorRegisteredName

See Also:
Constant Field Values

ALGORITHM

public static final java.lang.String ALGORITHM

The encryption algorithm.

Value = algorithm

See Also:
Constant Field Values

PROVIDER_NAME

public static final java.lang.String PROVIDER_NAME

The name of the JCE security provider we want to get the algorithm from (if it is no the default one.

Value = providerName

See Also:
Constant Field Values

PASSWORD

public static final java.lang.String PASSWORD

The encryption password.

Value = password

See Also:
Constant Field Values

KEY_OBTENTION_ITERATIONS

public static final java.lang.String KEY_OBTENTION_ITERATIONS

The number of hashing iterations to be applied for obtaining the encryption key.

Value = keyObtentionIterations

See Also:
Constant Field Values

STRING_OUTPUT_TYPE

public static final java.lang.String STRING_OUTPUT_TYPE

The type of String output ("base64" (default), "hexadecimal") to be generated.

Value = stringOutputType

See Also:
Constant Field Values

DECIMAL_SCALE

public static final java.lang.String DECIMAL_SCALE

The scale (numbers after the decimal point) to be used when storing decimal numbers.

Value = decimalScale

See Also:
Constant Field Values

STORE_TIME_ZONE

public static final java.lang.String STORE_TIME_ZONE

Whether the calendar time zone should be stored with the date or not.

Value = storeTimeZone

See Also:
Constant Field Values


Copyright © 2010 The JASYPT team. All Rights Reserved.