aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/knowcenter/wag/egov/egiz/web/SessionAttributes.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/knowcenter/wag/egov/egiz/web/SessionAttributes.java')
-rw-r--r--src/main/java/at/knowcenter/wag/egov/egiz/web/SessionAttributes.java62
1 files changed, 0 insertions, 62 deletions
diff --git a/src/main/java/at/knowcenter/wag/egov/egiz/web/SessionAttributes.java b/src/main/java/at/knowcenter/wag/egov/egiz/web/SessionAttributes.java
deleted file mode 100644
index 1a7d90f..0000000
--- a/src/main/java/at/knowcenter/wag/egov/egiz/web/SessionAttributes.java
+++ /dev/null
@@ -1,62 +0,0 @@
-/**
- * <copyright> Copyright (c) 2006 by Know-Center, Graz, Austria </copyright>
- *
- * 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.
- *
- * <p>
- * The SessionInformation class contains type safe references to the objects.
- * </p>
- */
- 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";
-
-}