org.apache.turbine
Interface TurbineConstants


public interface TurbineConstants

This interface contains all the constants used throughout the Turbine code base.

Author:
Jason van Zyl

Field Summary
static java.lang.String ACTION_ACCESS_CONTROLLER
          I don't think this is being used, is it?
static java.lang.String ACTION_CACHE_SIZE
          The size of the actions cache if module caching is on.
static java.lang.String ACTION_LOGIN
          Action to perform when a user logs in.
static java.lang.String ACTION_LOGOUT
          Action to perform when a user logs out.
static java.lang.String ACTION_SESSION_VALIDATOR
          Actions that performs session validation.
static java.lang.String DB_ADAPTOR
          Database adaptor.
static java.lang.String DB_CONNECTION_LOG_INTERVAL
          How often the PoolBrokerServer logs the status of the pool.
static java.lang.String DB_CONNECTION_WAIT_TIMEOUT
          How long a connection request will wait before giving up.
static java.lang.String DB_DRIVER
          JDBC database driver.
static java.lang.String DB_EXPIRYTIME
          Expiry time of database connections.
static java.lang.String DB_IDBROKER_CLEVERQUANTITY
          Indicates that the id broker will generate more ids if the demand is high.
static java.lang.String DB_MAXCONNECTIONS
          Maximum number of connections to pool.
static java.lang.String DB_PASSWORD
          JDBC password.
static java.lang.String DB_URL
          JDBC database URL.
static java.lang.String DB_USERNAME
          JDBC username.
static java.lang.String DEFAULT_DOCUMENT_TYPE
          Default document type.
static java.lang.String LAYOUT_CACHE_SIZE
          The size of the layout cache if module caching is on.
static java.lang.String LAYOUT_DEFAULT
          Default layout.
static java.lang.String LOGIN_ERROR
          Message to display when a user fails to login.
static java.lang.String LOGIN_MESSAGE
          Message to display upon successful login.
static java.lang.String LOGIN_MESSAGE_NOSCREEN
          Message to display when screens variable invalid.
static java.lang.String LOGOUT_MESSAGE
          Message to display when a user logs out.
static java.lang.String MAIL_SERVER_KEY
          SMTP server Turbine uses to send mail.
static java.lang.String MAPS_BUILDER
          Map building.
static java.lang.String MODULE_CACHE
          Property that controls whether Turbine modules are cached or not.
static java.lang.String MODULE_PACKAGES
          The packages where Turbine will look for modules.
static java.lang.String NAVIGATION_CACHE_SIZE
          The size of the navigation cache if module caching is on.
static java.lang.String PAGE_CACHE_SIZE
          The size of the actions page if module caching is on.
static java.lang.String PAGE_DEFAULT
          Default page.
static java.lang.String PP_URL_CASE_FOLDING
          Should the PP fold the case of everything.
static java.lang.String SCHEDULED_JOB_CACHE_SIZE
          The size of the actions cache if module caching is on.
static java.lang.String SCHEDULER_LOG_FACILITY
          The logging facility which captures output from the SchedulerService.
static java.lang.String SCREEN_CACHE_SIZE
          The size of the actions cache if module caching is on.
static java.lang.String SCREEN_ERROR
          Login error screen.
static java.lang.String SCREEN_HOMEPAGE
          Home page screen.
static java.lang.String SCREEN_INVALID_STATE
           
static java.lang.String SCREEN_LOGIN
          Login screen.
static java.lang.String SQL_LOG_FACILITY
          The logging facility which captures output from Peers.
static java.lang.String TEMPLATE_ERROR
          Login error template.
static java.lang.String TEMPLATE_HOMEPAGE
          Home page template.
static java.lang.String TEMPLATE_INVALID_STATE
           
static java.lang.String TEMPLATE_LOGIN
          Login template.
static java.lang.String USE_SSL
          Indicate whether this Turbine application is using SSL.
 

Field Detail

SQL_LOG_FACILITY

public static final java.lang.String SQL_LOG_FACILITY
The logging facility which captures output from Peers.

SCHEDULER_LOG_FACILITY

public static final java.lang.String SCHEDULER_LOG_FACILITY
The logging facility which captures output from the SchedulerService.

MAIL_SERVER_KEY

public static final java.lang.String MAIL_SERVER_KEY
SMTP server Turbine uses to send mail.

MODULE_CACHE

public static final java.lang.String MODULE_CACHE
Property that controls whether Turbine modules are cached or not.

ACTION_CACHE_SIZE

public static final java.lang.String ACTION_CACHE_SIZE
The size of the actions cache if module caching is on.

LAYOUT_CACHE_SIZE

public static final java.lang.String LAYOUT_CACHE_SIZE
The size of the layout cache if module caching is on.

NAVIGATION_CACHE_SIZE

public static final java.lang.String NAVIGATION_CACHE_SIZE
The size of the navigation cache if module caching is on.

PAGE_CACHE_SIZE

public static final java.lang.String PAGE_CACHE_SIZE
The size of the actions page if module caching is on.

SCREEN_CACHE_SIZE

public static final java.lang.String SCREEN_CACHE_SIZE
The size of the actions cache if module caching is on.

SCHEDULED_JOB_CACHE_SIZE

public static final java.lang.String SCHEDULED_JOB_CACHE_SIZE
The size of the actions cache if module caching is on.

MODULE_PACKAGES

public static final java.lang.String MODULE_PACKAGES
The packages where Turbine will look for modules. This is effectively Turbine's classpath.

DB_DRIVER

public static final java.lang.String DB_DRIVER
JDBC database driver.

DB_URL

public static final java.lang.String DB_URL
JDBC database URL.

DB_USERNAME

public static final java.lang.String DB_USERNAME
JDBC username.

DB_PASSWORD

public static final java.lang.String DB_PASSWORD
JDBC password.

DB_MAXCONNECTIONS

public static final java.lang.String DB_MAXCONNECTIONS
Maximum number of connections to pool.

DB_EXPIRYTIME

public static final java.lang.String DB_EXPIRYTIME
Expiry time of database connections.

DB_CONNECTION_WAIT_TIMEOUT

public static final java.lang.String DB_CONNECTION_WAIT_TIMEOUT
How long a connection request will wait before giving up.

DB_CONNECTION_LOG_INTERVAL

public static final java.lang.String DB_CONNECTION_LOG_INTERVAL
How often the PoolBrokerServer logs the status of the pool.

DB_ADAPTOR

public static final java.lang.String DB_ADAPTOR
Database adaptor.

DB_IDBROKER_CLEVERQUANTITY

public static final java.lang.String DB_IDBROKER_CLEVERQUANTITY
Indicates that the id broker will generate more ids if the demand is high.

TEMPLATE_HOMEPAGE

public static final java.lang.String TEMPLATE_HOMEPAGE
Home page template.

TEMPLATE_LOGIN

public static final java.lang.String TEMPLATE_LOGIN
Login template.

TEMPLATE_ERROR

public static final java.lang.String TEMPLATE_ERROR
Login error template.

SCREEN_HOMEPAGE

public static final java.lang.String SCREEN_HOMEPAGE
Home page screen.

SCREEN_LOGIN

public static final java.lang.String SCREEN_LOGIN
Login screen.

SCREEN_ERROR

public static final java.lang.String SCREEN_ERROR
Login error screen.

SCREEN_INVALID_STATE

public static final java.lang.String SCREEN_INVALID_STATE

TEMPLATE_INVALID_STATE

public static final java.lang.String TEMPLATE_INVALID_STATE

ACTION_LOGIN

public static final java.lang.String ACTION_LOGIN
Action to perform when a user logs in.

ACTION_LOGOUT

public static final java.lang.String ACTION_LOGOUT
Action to perform when a user logs out.

ACTION_SESSION_VALIDATOR

public static final java.lang.String ACTION_SESSION_VALIDATOR
Actions that performs session validation.

ACTION_ACCESS_CONTROLLER

public static final java.lang.String ACTION_ACCESS_CONTROLLER
I don't think this is being used, is it?

LAYOUT_DEFAULT

public static final java.lang.String LAYOUT_DEFAULT
Default layout.

PAGE_DEFAULT

public static final java.lang.String PAGE_DEFAULT
Default page.

MAPS_BUILDER

public static final java.lang.String MAPS_BUILDER
Map building. This will probably be Torque generated at some point.

LOGIN_MESSAGE

public static final java.lang.String LOGIN_MESSAGE
Message to display upon successful login.

LOGIN_ERROR

public static final java.lang.String LOGIN_ERROR
Message to display when a user fails to login.

LOGIN_MESSAGE_NOSCREEN

public static final java.lang.String LOGIN_MESSAGE_NOSCREEN
Message to display when screens variable invalid.

LOGOUT_MESSAGE

public static final java.lang.String LOGOUT_MESSAGE
Message to display when a user logs out.

USE_SSL

public static final java.lang.String USE_SSL
Indicate whether this Turbine application is using SSL. Used for creating dynamic URIs.

PP_URL_CASE_FOLDING

public static final java.lang.String PP_URL_CASE_FOLDING
Should the PP fold the case of everything. Possible values are "upper", "lower" and "none".

DEFAULT_DOCUMENT_TYPE

public static final java.lang.String DEFAULT_DOCUMENT_TYPE
Default document type.


Copyright © 1999-2001 Apache Software Foundation. All Rights Reserved.