Mercurial > hg > AnnotationManager
view WebContent/WEB-INF/web.xml.template @ 9:e9fd2e1e0979
consumer key and secret store (property file).
author | casties |
---|---|
date | Mon, 19 Mar 2012 21:26:20 +0100 |
parents | 6888ae3287b8 |
children | 9393c9c9b916 |
line wrap: on
line source
<?xml version="1.0" encoding="UTF-8"?> <web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> <display-name>RESTfulJavaWebServices-Restlet</display-name> <!-- Application classname --> <context-param> <param-name>org.restlet.application</param-name> <param-value>de.mpiwg.itgroup.annotationManager.restlet.RestServer</param-value> </context-param> <context-param> <param-name>de.mpiwg.itgroup.annotationManager.jaas.configFilePath</param-name> <param-value>file:///etc/jaasAuth.conf</param-value> </context-param> <context-param> <param-name>de.mpiwg.itgroup.annotationManager.virtuoso.tripleStoreUser</param-name> <param-value>USERNAME</param-value> </context-param> <context-param> <param-name>de.mpiwg.itgroup.annotationManager.virtuoso.tripleStoreUserPassword</param-name> <param-value>PASSWORD</param-value> </context-param> <!-- Restletadapter --> <servlet> <servlet-name>RestletServlet</servlet-name> <servlet-class> org.restlet.ext.servlet.ServerServlet </servlet-class> </servlet> <!-- Catchallrequests --> <servlet-mapping> <servlet-name>RestletServlet</servlet-name> <url-pattern>/annotator/*</url-pattern> </servlet-mapping> </web-app>