org.apache.turbine.services.security.torque
Interface UserPeerManagerConstants

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
UserPeerManager

public interface UserPeerManagerConstants
extends java.io.Serializable

Constants for configuring the various columns and bean properties for the used peer.

 Default is:

 security.torque.userPeer.class = org.apache.turbine.services.security.torque.om.TurbineUserPeer
 security.torque.userPeer.column.name       = LOGIN_NAME
 security.torque.userPeer.column.id         = USER_ID
 security.torque.userPeer.column.password   = PASSWORD_VALUE
 security.torque.userPeer.column.firstname  = FIRST_NAME
 security.torque.userPeer.column.lastname   = LAST_NAME
 security.torque.userPeer.column.email      = EMAIL
 security.torque.userPeer.column.confirm    = CONFIRM_VALUE
 security.torque.userPeer.column.createdate = CREATED
 security.torque.userPeer.column.lastlogin  = LAST_LOGIN
 security.torque.userPeer.column.objectdata = OBJECTDATA

 security.torque.user.class = org.apache.turbine.services.security.torque.om.TurbineUser
 security.torque.user.property.name       = UserName
 security.torque.user.property.id         = UserId
 security.torque.user.property.password   = Password
 security.torque.user.property.firstname  = FirstName
 security.torque.user.property.lastname   = LastName
 security.torque.user.property.email      = Email
 security.torque.user.property.confirm    = Confirmed
 security.torque.user.property.createdate = CreateDate
 security.torque.user.property.lastlogin  = LastLogin
 security.torque.user.property.objectdata = Objectdata

 
If security.torque.user.class is unset, then the value of the constant CLASSNAME_DEFAULT from the configured Peer is used.

Version:
$Id: UserPeerManagerConstants.java 534527 2007-05-02 16:10:59Z tv $
Author:
Henning P. Schmiedehausen

Field Summary
static java.lang.String USER_CLASS_KEY
          The key within the security service properties for the user class implementation
static java.lang.String USER_CONFIRM_COLUMN_DEFAULT
          The default value for the column name constant for the confirm field.
static java.lang.String USER_CONFIRM_COLUMN_KEY
          The column name for the confirm field.
static java.lang.String USER_CONFIRM_PROPERTY_DEFAULT
          The default value of the bean property for the confirm field.
static java.lang.String USER_CONFIRM_PROPERTY_KEY
          The property name of the bean property for the confirm field.
static java.lang.String USER_CREATE_COLUMN_DEFAULT
          The default value for the column name constant for the create date field.
static java.lang.String USER_CREATE_COLUMN_KEY
          The column name for the create date field.
static java.lang.String USER_CREATE_PROPERTY_DEFAULT
          The default value of the bean property for the create date field.
static java.lang.String USER_CREATE_PROPERTY_KEY
          The property name of the bean property for the create date field.
static java.lang.String USER_EMAIL_COLUMN_DEFAULT
          The default value for the column name constant for the email field.
static java.lang.String USER_EMAIL_COLUMN_KEY
          The column name for the email field.
static java.lang.String USER_EMAIL_PROPERTY_DEFAULT
          The default value of the bean property for the email field.
static java.lang.String USER_EMAIL_PROPERTY_KEY
          The property name of the bean property for the email field.
static java.lang.String USER_FIRST_NAME_COLUMN_DEFAULT
          The default value for the column name constant for the first name field.
static java.lang.String USER_FIRST_NAME_COLUMN_KEY
          The column name for the first name field.
static java.lang.String USER_FIRST_NAME_PROPERTY_DEFAULT
          The default value of the bean property for the first name field.
static java.lang.String USER_FIRST_NAME_PROPERTY_KEY
          The property name of the bean property for the first name field.
static java.lang.String USER_ID_COLUMN_DEFAULT
          The default value for the column name constant for the id field.
static java.lang.String USER_ID_COLUMN_KEY
          The column name for the id field.
static java.lang.String USER_ID_PROPERTY_DEFAULT
          The default value of the bean property for the id field.
static java.lang.String USER_ID_PROPERTY_KEY
          The property name of the bean property for the id field.
static java.lang.String USER_LAST_LOGIN_COLUMN_DEFAULT
          The default value for the column name constant for the last login field.
static java.lang.String USER_LAST_LOGIN_COLUMN_KEY
          The column name for the last login field.
static java.lang.String USER_LAST_LOGIN_PROPERTY_DEFAULT
          The default value of the bean property for the last login field.
static java.lang.String USER_LAST_LOGIN_PROPERTY_KEY
          The property name of the bean property for the last login field.
static java.lang.String USER_LAST_NAME_COLUMN_DEFAULT
          The default value for the column name constant for the last name field.
static java.lang.String USER_LAST_NAME_COLUMN_KEY
          The column name for the last name field.
static java.lang.String USER_LAST_NAME_PROPERTY_DEFAULT
          The default value of the bean property for the last name field.
static java.lang.String USER_LAST_NAME_PROPERTY_KEY
          The property name of the bean property for the last name field.
static java.lang.String USER_NAME_COLUMN_DEFAULT
          The default value for the column name constant for the login name field.
static java.lang.String USER_NAME_COLUMN_KEY
          The column name for the login name field.
static java.lang.String USER_NAME_PROPERTY_DEFAULT
          The default value of the bean property for the login name field.
static java.lang.String USER_NAME_PROPERTY_KEY
          The property name of the bean property for the login name field.
static java.lang.String USER_OBJECTDATA_COLUMN_DEFAULT
          The default value for the column name constant for the objectdata field.
static java.lang.String USER_OBJECTDATA_COLUMN_KEY
          The column name for the objectdata field.
static java.lang.String USER_OBJECTDATA_PROPERTY_DEFAULT
          The default value of the bean property for the objectdata field.
static java.lang.String USER_OBJECTDATA_PROPERTY_KEY
          The property name of the bean property for the last login field.
static java.lang.String USER_PASSWORD_COLUMN_DEFAULT
          The default value for the column name constant for the password field.
static java.lang.String USER_PASSWORD_COLUMN_KEY
          The column name for the password field.
static java.lang.String USER_PASSWORD_PROPERTY_DEFAULT
          The default value of the bean property for the password field.
static java.lang.String USER_PASSWORD_PROPERTY_KEY
          The property name of the bean property for the password field.
static java.lang.String USER_PEER_CLASS_DEFAULT
          User peer default class
static java.lang.String USER_PEER_CLASS_KEY
          The key within the security service properties for the user peer class implementation
 

Field Detail

USER_CLASS_KEY

static final java.lang.String USER_CLASS_KEY
The key within the security service properties for the user class implementation

See Also:
Constant Field Values

USER_PEER_CLASS_KEY

static final java.lang.String USER_PEER_CLASS_KEY
The key within the security service properties for the user peer class implementation

See Also:
Constant Field Values

USER_PEER_CLASS_DEFAULT

static final java.lang.String USER_PEER_CLASS_DEFAULT
User peer default class


USER_NAME_COLUMN_KEY

static final java.lang.String USER_NAME_COLUMN_KEY
The column name for the login name field.

See Also:
Constant Field Values

USER_ID_COLUMN_KEY

static final java.lang.String USER_ID_COLUMN_KEY
The column name for the id field.

See Also:
Constant Field Values

USER_PASSWORD_COLUMN_KEY

static final java.lang.String USER_PASSWORD_COLUMN_KEY
The column name for the password field.

See Also:
Constant Field Values

USER_FIRST_NAME_COLUMN_KEY

static final java.lang.String USER_FIRST_NAME_COLUMN_KEY
The column name for the first name field.

See Also:
Constant Field Values

USER_LAST_NAME_COLUMN_KEY

static final java.lang.String USER_LAST_NAME_COLUMN_KEY
The column name for the last name field.

See Also:
Constant Field Values

USER_EMAIL_COLUMN_KEY

static final java.lang.String USER_EMAIL_COLUMN_KEY
The column name for the email field.

See Also:
Constant Field Values

USER_CONFIRM_COLUMN_KEY

static final java.lang.String USER_CONFIRM_COLUMN_KEY
The column name for the confirm field.

See Also:
Constant Field Values

USER_CREATE_COLUMN_KEY

static final java.lang.String USER_CREATE_COLUMN_KEY
The column name for the create date field.

See Also:
Constant Field Values

USER_LAST_LOGIN_COLUMN_KEY

static final java.lang.String USER_LAST_LOGIN_COLUMN_KEY
The column name for the last login field.

See Also:
Constant Field Values

USER_OBJECTDATA_COLUMN_KEY

static final java.lang.String USER_OBJECTDATA_COLUMN_KEY
The column name for the objectdata field.

See Also:
Constant Field Values

USER_NAME_COLUMN_DEFAULT

static final java.lang.String USER_NAME_COLUMN_DEFAULT
The default value for the column name constant for the login name field.

See Also:
Constant Field Values

USER_ID_COLUMN_DEFAULT

static final java.lang.String USER_ID_COLUMN_DEFAULT
The default value for the column name constant for the id field.

See Also:
Constant Field Values

USER_PASSWORD_COLUMN_DEFAULT

static final java.lang.String USER_PASSWORD_COLUMN_DEFAULT
The default value for the column name constant for the password field.

See Also:
Constant Field Values

USER_FIRST_NAME_COLUMN_DEFAULT

static final java.lang.String USER_FIRST_NAME_COLUMN_DEFAULT
The default value for the column name constant for the first name field.

See Also:
Constant Field Values

USER_LAST_NAME_COLUMN_DEFAULT

static final java.lang.String USER_LAST_NAME_COLUMN_DEFAULT
The default value for the column name constant for the last name field.

See Also:
Constant Field Values

USER_EMAIL_COLUMN_DEFAULT

static final java.lang.String USER_EMAIL_COLUMN_DEFAULT
The default value for the column name constant for the email field.

See Also:
Constant Field Values

USER_CONFIRM_COLUMN_DEFAULT

static final java.lang.String USER_CONFIRM_COLUMN_DEFAULT
The default value for the column name constant for the confirm field.

See Also:
Constant Field Values

USER_CREATE_COLUMN_DEFAULT

static final java.lang.String USER_CREATE_COLUMN_DEFAULT
The default value for the column name constant for the create date field.

See Also:
Constant Field Values

USER_LAST_LOGIN_COLUMN_DEFAULT

static final java.lang.String USER_LAST_LOGIN_COLUMN_DEFAULT
The default value for the column name constant for the last login field.

See Also:
Constant Field Values

USER_OBJECTDATA_COLUMN_DEFAULT

static final java.lang.String USER_OBJECTDATA_COLUMN_DEFAULT
The default value for the column name constant for the objectdata field.

See Also:
Constant Field Values

USER_NAME_PROPERTY_KEY

static final java.lang.String USER_NAME_PROPERTY_KEY
The property name of the bean property for the login name field.

See Also:
Constant Field Values

USER_ID_PROPERTY_KEY

static final java.lang.String USER_ID_PROPERTY_KEY
The property name of the bean property for the id field.

See Also:
Constant Field Values

USER_PASSWORD_PROPERTY_KEY

static final java.lang.String USER_PASSWORD_PROPERTY_KEY
The property name of the bean property for the password field.

See Also:
Constant Field Values

USER_FIRST_NAME_PROPERTY_KEY

static final java.lang.String USER_FIRST_NAME_PROPERTY_KEY
The property name of the bean property for the first name field.

See Also:
Constant Field Values

USER_LAST_NAME_PROPERTY_KEY

static final java.lang.String USER_LAST_NAME_PROPERTY_KEY
The property name of the bean property for the last name field.

See Also:
Constant Field Values

USER_EMAIL_PROPERTY_KEY

static final java.lang.String USER_EMAIL_PROPERTY_KEY
The property name of the bean property for the email field.

See Also:
Constant Field Values

USER_CONFIRM_PROPERTY_KEY

static final java.lang.String USER_CONFIRM_PROPERTY_KEY
The property name of the bean property for the confirm field.

See Also:
Constant Field Values

USER_CREATE_PROPERTY_KEY

static final java.lang.String USER_CREATE_PROPERTY_KEY
The property name of the bean property for the create date field.

See Also:
Constant Field Values

USER_LAST_LOGIN_PROPERTY_KEY

static final java.lang.String USER_LAST_LOGIN_PROPERTY_KEY
The property name of the bean property for the last login field.

See Also:
Constant Field Values

USER_OBJECTDATA_PROPERTY_KEY

static final java.lang.String USER_OBJECTDATA_PROPERTY_KEY
The property name of the bean property for the last login field.

See Also:
Constant Field Values

USER_NAME_PROPERTY_DEFAULT

static final java.lang.String USER_NAME_PROPERTY_DEFAULT
The default value of the bean property for the login name field.

See Also:
Constant Field Values

USER_ID_PROPERTY_DEFAULT

static final java.lang.String USER_ID_PROPERTY_DEFAULT
The default value of the bean property for the id field.

See Also:
Constant Field Values

USER_PASSWORD_PROPERTY_DEFAULT

static final java.lang.String USER_PASSWORD_PROPERTY_DEFAULT
The default value of the bean property for the password field.

See Also:
Constant Field Values

USER_FIRST_NAME_PROPERTY_DEFAULT

static final java.lang.String USER_FIRST_NAME_PROPERTY_DEFAULT
The default value of the bean property for the first name field.

See Also:
Constant Field Values

USER_LAST_NAME_PROPERTY_DEFAULT

static final java.lang.String USER_LAST_NAME_PROPERTY_DEFAULT
The default value of the bean property for the last name field.

See Also:
Constant Field Values

USER_EMAIL_PROPERTY_DEFAULT

static final java.lang.String USER_EMAIL_PROPERTY_DEFAULT
The default value of the bean property for the email field.

See Also:
Constant Field Values

USER_CONFIRM_PROPERTY_DEFAULT

static final java.lang.String USER_CONFIRM_PROPERTY_DEFAULT
The default value of the bean property for the confirm field.

See Also:
Constant Field Values

USER_CREATE_PROPERTY_DEFAULT

static final java.lang.String USER_CREATE_PROPERTY_DEFAULT
The default value of the bean property for the create date field.

See Also:
Constant Field Values

USER_LAST_LOGIN_PROPERTY_DEFAULT

static final java.lang.String USER_LAST_LOGIN_PROPERTY_DEFAULT
The default value of the bean property for the last login field.

See Also:
Constant Field Values

USER_OBJECTDATA_PROPERTY_DEFAULT

static final java.lang.String USER_OBJECTDATA_PROPERTY_DEFAULT
The default value of the bean property for the objectdata field.

See Also:
Constant Field Values


Copyright © 2000-2007 Apache Software Foundation. All Rights Reserved.