Map<K,V> application
Field to store application context or its proxy.
The application context lasts for the life of the application. A reference to the database is stored in the application context at startup.
Map<K,V> session
Field to store session context, or its proxy.
String task
Field to store workflow task.
The Task is used to track the state of the CRUD workflows. It can be set to Constant.CREATE, Constant.EDIT, or Constant.DELETE as needed.
String token
Field to store double-submit guard.
String host
Field to store Subscription host.
The host is an immutable property of the Subscrtion DAP object, so we need to store it locally until we are ready to create the Subscription.
String password
Field to store User password property.
The User DAO object password proerty is immutable, so we store it locally until we are ready to create the object.
String password2
Field to store the User password confirmation.
When a User object is created, we ask the client to enter the password twice, to help ensure the password is being typed correctly.
String username
Field to store User username.
The User DAO object password proerty is immutable, so we store it locally until we are ready to create the object.
com.opensymphony.xwork2.util.logging.Logger log
Log instance for this application.
Copyright © 2000-2013 Apache Software Foundation. All Rights Reserved.