/**
 *  Copyright (c) 2006 by Know-Center, Graz, Austria 
 * 
 * This software is the confidential and proprietary information of Know-Center,
 * Graz, Austria. You shall not disclose such Confidential Information and shall
 * use it only in accordance with the terms of the license agreement you entered
 * into with Know-Center.
 * 
 * KNOW-CENTER MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
 * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
 * NON-INFRINGEMENT. KNOW-CENTER SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY
 * LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
 * DERIVATIVES.
 * 
 * $Id: SessionAttributes.java,v 1.2 2006/08/25 17:06:11 wprinz Exp $
 */
package at.knowcenter.wag.egov.egiz.web;
/**
 * Helper class that provides constants for the session attributes.
 * 
 * @author wprinz
 */
public abstract class SessionAttributes
{
  /**
   * The user name.
   */
  public static final String ATTRIBUTE_USER_NAME = "uname";
  /**
   * The user password.
   */
  public static final String ATTRIBUTE_USER_PASSWORD = "upass";
  /**
   * The attribute name under which the SessionInformation object is stored.
   * 
   * 
   * The SessionInformation class contains type safe references to the objects.
   * 
   */
  public static final String ATTRIBUTE_SESSION_INFORMATION = "session_information";
  
  /**
   * The signed pdf document.
   */
  public static final String SIGNED_PDF_DOCUMENT = "at.gv.egiz.pdfas.web.SignSessionInformation:signedPDF";
  
  /**
   * The download URL for the signed pdf document.
   */
  public static final String DOWNLOAD_URL_FOR_SIGNED_PDF_DOCUMENT = "java.lang.String:downloadURL";
  
  /**
   * The notification url of an external webapplication.
   */
  public static final String PARENT_WEBAPP_REDIRECT_URL = "java.lang.String:parentWebAppRedirectURL";
  
}