org.progeeks.hibernate
Interface HibernateAnnotations.ID_ANNOTATION_PROPERTIES

Enclosing class:
HibernateAnnotations

public static interface HibernateAnnotations.ID_ANNOTATION_PROPERTIES

Constants for all of the property names in a id annotation object.


Field Summary
static java.lang.String PROP_ACCESS
           
static java.lang.String PROP_COLUMN
           
static java.lang.String PROP_GENERATOR_CLASS
          Class of the generator to use for the id.
static java.lang.String PROP_GENERATOR_PARAMS
          Parameters for the generator (as a map).
static java.lang.String PROP_NODE
           
static java.lang.String PROP_TYPE
          Data type of the property being persisted.
static java.lang.String PROP_UNSAVED_VALUE
           
 

Field Detail

PROP_TYPE

static final java.lang.String PROP_TYPE
Data type of the property being persisted. If not specified, it will be determined based on the property type.

See Also:
Constant Field Values

PROP_GENERATOR_CLASS

static final java.lang.String PROP_GENERATOR_CLASS
Class of the generator to use for the id.

See Also:
Constant Field Values

PROP_GENERATOR_PARAMS

static final java.lang.String PROP_GENERATOR_PARAMS
Parameters for the generator (as a map). For the map entries, the key is the generator param name and the value is the generator param's value.

See Also:
Constant Field Values

PROP_COLUMN

static final java.lang.String PROP_COLUMN
See Also:
Constant Field Values

PROP_UNSAVED_VALUE

static final java.lang.String PROP_UNSAVED_VALUE
See Also:
Constant Field Values

PROP_ACCESS

static final java.lang.String PROP_ACCESS
See Also:
Constant Field Values

PROP_NODE

static final java.lang.String PROP_NODE
See Also:
Constant Field Values


Copyright © 2002-2003 Paul Speed. All Rights Reserved.