diff options
| author | mcentner <mcentner@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2010-05-27 07:26:44 +0000 | 
|---|---|---|
| committer | mcentner <mcentner@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2010-05-27 07:26:44 +0000 | 
| commit | 00b274ad1a06a3a5d5a824cbb8dab6c13dc8e315 (patch) | |
| tree | 2b6bd171d82d850cb3f2537d2318c062e92226d1 /BKUOnline/src | |
| parent | 31997eae98526584a4df1690aaed0a23575cadeb (diff) | |
| download | mocca-00b274ad1a06a3a5d5a824cbb8dab6c13dc8e315.tar.gz mocca-00b274ad1a06a3a5d5a824cbb8dab6c13dc8e315.tar.bz2 mocca-00b274ad1a06a3a5d5a824cbb8dab6c13dc8e315.zip | |
BKUApplet and BKUAppletExt projects produce an additional artifact with classifier 'single', a single, shrunk and signed jar file containing all required dependencies. Those are used by BKUOnline now. 
git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@744 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4
Diffstat (limited to 'BKUOnline/src')
| -rw-r--r-- | BKUOnline/src/main/webapp/PINManagement.jsp | 2 | ||||
| -rw-r--r-- | BKUOnline/src/main/webapp/applet.jsp | 6 | 
2 files changed, 4 insertions, 4 deletions
| diff --git a/BKUOnline/src/main/webapp/PINManagement.jsp b/BKUOnline/src/main/webapp/PINManagement.jsp index d5f71862..cfb43db2 100644 --- a/BKUOnline/src/main/webapp/PINManagement.jsp +++ b/BKUOnline/src/main/webapp/PINManagement.jsp @@ -94,7 +94,7 @@                      var attributes = {                          codebase :'applet',                          code : 'at.gv.egiz.bku.online.applet.PINManagementApplet.class', -                        archive : 'BKUAppletExt.jar, commons-logging.jar, iaik_jce_me4se.jar', +                        archive : 'BKUAppletExt-single.jar',                          width : <%=width%>,                          height :<%=height%>,                          name : 'moccaapplet', diff --git a/BKUOnline/src/main/webapp/applet.jsp b/BKUOnline/src/main/webapp/applet.jsp index 3b284496..c1624cdf 100644 --- a/BKUOnline/src/main/webapp/applet.jsp +++ b/BKUOnline/src/main/webapp/applet.jsp @@ -53,13 +53,13 @@          String extension = (String) session.getAttribute("appletExtension");          String appletClass, appletArchive;          if ("activation".equalsIgnoreCase(extension)) { -            appletArchive = "BKUAppletExt"; +            appletArchive = "BKUAppletExt-single";              appletClass = "at.gv.egiz.bku.online.applet.ActivationApplet.class";          } else if ("pin".equalsIgnoreCase(extension)) { -            appletArchive = "BKUAppletExt"; +            appletArchive = "BKUAppletExt-single";              appletClass = "at.gv.egiz.bku.online.applet.PINManagementApplet.class";          } else { -            appletArchive = "BKUApplet"; +            appletArchive = "BKUApplet-single";              appletClass = "at.gv.egiz.bku.online.applet.BKUApplet.class";          } | 
