com.plumtree.uiinfrastructure.activityspace
Class ASConstants

java.lang.Object
  extended by com.plumtree.uiinfrastructure.activityspace.ASConstants

public final class ASConstants
extends java.lang.Object

Constants used as arguments in the query string or in form POSTS.

Author:
Don Hayler

Field Summary
static java.lang.String CACHED
          If this is set to 'true' then the cache will be searched for the named space and a new one will be created if it cannot be found.
static java.lang.String CACHED_INPUT
          cached or not
static java.lang.String CLEARSESSION
          This parameter is for use by network monitoring tools and tells the Interpreter to clean up the HTTPSession after the request has completed.
static java.lang.String CONTROL
          name of the control
static java.lang.String CONTROL_INPUT
          name of the control
static java.lang.String PAGE
          name of the display page
static java.lang.String PAGE_INPUT
          name of the display page
static java.lang.String PARENTSPACEID
          parent space id
static java.lang.String PARENTSPACEID_INPUT
          parent space id
static java.lang.String PARENTSPACENAME
          parent space name
static java.lang.String PARENTSPACENAME_INPUT
          parent space name
static java.lang.String PREVIOUS_REQUEST_IS_POST
           
static java.lang.String PREVIOUS_REQUEST_URL
          The full request URL of the previous request is stored using this key on the sandbox to allow pages to make links back to the previous page.
static java.lang.String REDIRECT_AFTER_LOGIN
          JF- QS param for the URL to redirect to after login (usually we don't need this because we do internal redirects but in mode 1, we might have to do a 302 redirect to the login page and we don't want to loose the information on where to redirect after that).
static java.lang.String REDIRECT_AFTER_LOGIN_INPUT
           
static java.lang.String REDIRECT_AFTER_LOGIN_SECONDARY
          DAP- Secondary QS param for the URL to redirect to after login required to handle complex cases involving nested PEI plugins with custom guest user login pages, or multiple (pseudo) guest user login pages.
static java.lang.String SANDBOXASCACHE
          Key that the cache object is stored under in the user's sandbox session AActivitySpace.GetSubSession()
static java.lang.String SPACEID
          Include the space ID if you want to access a specific instance of a space (optional) If you do not include this, a new space will be created.
static java.lang.String SPACEID_INPUT
          Include the space ID if you want to access a specific instance of a space (optional) If you do not include this, a new space will be created.
static java.lang.String SPACENAME
          space name
static java.lang.String SPACENAME_INPUT
          space name
static java.lang.String STR_508_VIEW_SUFFIX
          In 508 mode the AActivitySpace will handle views differently.
static java.lang.String SUBSPACE
          subspace key
static java.lang.String SUBSPACE_INPUT
          subspace key
static java.lang.String USERID_INPUT
          User session ID input
 
Constructor Summary
ASConstants()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

SPACENAME

public static final java.lang.String SPACENAME
space name

See Also:
Constant Field Values

SPACENAME_INPUT

public static final java.lang.String SPACENAME_INPUT
space name

See Also:
Constant Field Values

SPACEID

public static final java.lang.String SPACEID
Include the space ID if you want to access a specific instance of a space (optional) If you do not include this, a new space will be created.

See Also:
Constant Field Values

SPACEID_INPUT

public static final java.lang.String SPACEID_INPUT
Include the space ID if you want to access a specific instance of a space (optional) If you do not include this, a new space will be created.

See Also:
Constant Field Values

CACHED

public static final java.lang.String CACHED
If this is set to 'true' then the cache will be searched for the named space and a new one will be created if it cannot be found. This should not be used with SPACEID.

See Also:
Constant Field Values

CACHED_INPUT

public static final java.lang.String CACHED_INPUT
cached or not

See Also:
Constant Field Values

CONTROL

public static final java.lang.String CONTROL
name of the control

See Also:
Constant Field Values

CONTROL_INPUT

public static final java.lang.String CONTROL_INPUT
name of the control

See Also:
Constant Field Values

PAGE

public static final java.lang.String PAGE
name of the display page

See Also:
Constant Field Values

PAGE_INPUT

public static final java.lang.String PAGE_INPUT
name of the display page

See Also:
Constant Field Values

SUBSPACE

public static final java.lang.String SUBSPACE
subspace key

See Also:
Constant Field Values

SUBSPACE_INPUT

public static final java.lang.String SUBSPACE_INPUT
subspace key

See Also:
Constant Field Values

PARENTSPACENAME

public static final java.lang.String PARENTSPACENAME
parent space name

See Also:
Constant Field Values

PARENTSPACENAME_INPUT

public static final java.lang.String PARENTSPACENAME_INPUT
parent space name

See Also:
Constant Field Values

PARENTSPACEID

public static final java.lang.String PARENTSPACEID
parent space id

See Also:
Constant Field Values

PARENTSPACEID_INPUT

public static final java.lang.String PARENTSPACEID_INPUT
parent space id

See Also:
Constant Field Values

USERID_INPUT

public static final java.lang.String USERID_INPUT
User session ID input

See Also:
Constant Field Values

REDIRECT_AFTER_LOGIN

public static final java.lang.String REDIRECT_AFTER_LOGIN
JF- QS param for the URL to redirect to after login (usually we don't need this because we do internal redirects but in mode 1, we might have to do a 302 redirect to the login page and we don't want to loose the information on where to redirect after that).

See Also:
Constant Field Values

REDIRECT_AFTER_LOGIN_INPUT

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

REDIRECT_AFTER_LOGIN_SECONDARY

public static final java.lang.String REDIRECT_AFTER_LOGIN_SECONDARY
DAP- Secondary QS param for the URL to redirect to after login required to handle complex cases involving nested PEI plugins with custom guest user login pages, or multiple (pseudo) guest user login pages.

See Also:
Constant Field Values

CLEARSESSION

public static final java.lang.String CLEARSESSION
This parameter is for use by network monitoring tools and tells the Interpreter to clean up the HTTPSession after the request has completed. This means it will remove everything cached on the HTTPSession to minimize the impact of network monitoring on memory usage. This does not work for gateway requests or requests that fail in certain ways.

See Also:
Constant Field Values

SANDBOXASCACHE

public static final java.lang.String SANDBOXASCACHE
Key that the cache object is stored under in the user's sandbox session AActivitySpace.GetSubSession()

See Also:
Constant Field Values

STR_508_VIEW_SUFFIX

public static final java.lang.String STR_508_VIEW_SUFFIX
In 508 mode the AActivitySpace will handle views differently. When GetView(name) is called, the space will first attempt to find the view (name + _D). It will return that if it exists, otherwise it will return the normal view, which will be responsible for displaying 508 HTML. The _D views will be only for 508 mode.

See Also:
com.plumtree.uiinfrastructure.constants.AccessStyles.SECTION_508, Constant Field Values

PREVIOUS_REQUEST_URL

public static final java.lang.String PREVIOUS_REQUEST_URL
The full request URL of the previous request is stored using this key on the sandbox to allow pages to make links back to the previous page. Whether or not the request was a POST request is also stored. This information is used in HTMLConstructHelpers.GetPreviousSpaceURL().

See Also:
Constant Field Values

PREVIOUS_REQUEST_IS_POST

public static final java.lang.String PREVIOUS_REQUEST_IS_POST
See Also:
Constant Field Values
Constructor Detail

ASConstants

public ASConstants()



Copyright © 2002,2003,2004,2005 Plumtree Software, Inc., All Rights Reserved.