diff options
Diffstat (limited to 'pdf-as-web/src/main/webapp/WEB-INF')
-rw-r--r-- | pdf-as-web/src/main/webapp/WEB-INF/web.xml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pdf-as-web/src/main/webapp/WEB-INF/web.xml b/pdf-as-web/src/main/webapp/WEB-INF/web.xml index 4dd96f5f..eec30639 100644 --- a/pdf-as-web/src/main/webapp/WEB-INF/web.xml +++ b/pdf-as-web/src/main/webapp/WEB-INF/web.xml @@ -135,6 +135,12 @@ <description></description> <servlet-class>at.gv.egiz.pdfas.web.servlets.UIEntryPointServlet</servlet-class> </servlet> + <servlet> + <servlet-name>QRPlaceholderGenerator</servlet-name> + <display-name>QRPlaceholderGenerator</display-name> + <description></description> + <servlet-class>at.gv.egiz.pdfas.web.servlets.PlaceholderGeneratorServlet</servlet-class> + </servlet> <!-- Define mappings that are used by the servlet container to translate a particular request URI (context-relative) to a particular servlet. The @@ -197,6 +203,10 @@ <servlet-name>UIEntryPointServlet</servlet-name> <url-pattern>/userentry</url-pattern> </servlet-mapping> + <servlet-mapping> + <servlet-name>QRPlaceholderGenerator</servlet-name> + <url-pattern>/placeholder</url-pattern> + </servlet-mapping> <!-- Define the default session timeout for your application, in minutes. From a servlet or JSP page, you can modify the timeout for a particular session |