diff options
author | tzefferer <tzefferer@7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c> | 2007-07-27 08:57:19 +0000 |
---|---|---|
committer | tzefferer <tzefferer@7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c> | 2007-07-27 08:57:19 +0000 |
commit | 27255eff6215e6648f5406cfee1508c28ccc11ef (patch) | |
tree | f4ae0a0aa860010f33c8edd0612fd58f583ac48b /src/main/java | |
parent | 5b885bcd03379faaacffbe8db7ccf2bbe01c3613 (diff) | |
download | pdf-as-3-27255eff6215e6648f5406cfee1508c28ccc11ef.tar.gz pdf-as-3-27255eff6215e6648f5406cfee1508c28ccc11ef.tar.bz2 pdf-as-3-27255eff6215e6648f5406cfee1508c28ccc11ef.zip |
git-svn-id: https://joinup.ec.europa.eu/svn/pdf-as/trunk@162 7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/at/knowcenter/wag/egov/egiz/web/SessionInformation.java | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/main/java/at/knowcenter/wag/egov/egiz/web/SessionInformation.java b/src/main/java/at/knowcenter/wag/egov/egiz/web/SessionInformation.java index a85ca52..acf4416 100644 --- a/src/main/java/at/knowcenter/wag/egov/egiz/web/SessionInformation.java +++ b/src/main/java/at/knowcenter/wag/egov/egiz/web/SessionInformation.java @@ -23,6 +23,7 @@ import java.util.Properties; import at.knowcenter.wag.egov.egiz.framework.SignResult;
import at.knowcenter.wag.egov.egiz.pdf.IncrementalUpdateInformation;
+import at.knowcenter.wag.egov.egiz.pdf.TablePos;
/**
* This class is a collection of various session parameters that are passed
@@ -130,4 +131,19 @@ public class SessionInformation implements Serializable * The sign result to be passed back to the user.
*/
public SignResult sign_result;
+
+
+
+ /**
+ * Object containing information about the calling webapplication.
+ * @author: Thomas Zefferer
+ */
+ public ExternAppInformation exappinf;
+
+ /**
+ * Information about the signature position
+ * @author: Thomas Zefferer
+ */
+ public TablePos pos ;
+
}
|