|
Revision 308, 1.0 KB
(checked in by martijn, 2 years ago)
|
|
Big project Reogranization:
- all modules are named with their main package name,
e.g. "picr" becomes org.bridgedb.webservice.picr,
and the jar will be org.bridgedb.webservice.picr.jar
- webservice renamed to org.bridgedb.server
- corelib is split in org.bridgedb, org.bridgedb.rdb,
org.bridgedb.webservice.biomart and org.bridgedb.webservice.bridgerest
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | <?xml version="1.0" encoding="UTF-8"?> |
|---|
| 2 | <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|---|
| 3 | xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" |
|---|
| 4 | xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" |
|---|
| 5 | id="WebApp_ID" version="2.5"> |
|---|
| 6 | |
|---|
| 7 | <display-name>Restlet adapters</display-name> |
|---|
| 8 | |
|---|
| 9 | <servlet> |
|---|
| 10 | <servlet-name>BridgeDb</servlet-name> |
|---|
| 11 | <servlet-class>org.restlet.ext.servlet.ServerServlet</servlet-class> |
|---|
| 12 | <init-param> |
|---|
| 13 | <param-name>org.restlet.application</param-name> |
|---|
| 14 | <param-value>org.bridgedb.rest.IDMapperService</param-value> |
|---|
| 15 | </init-param> |
|---|
| 16 | </servlet> |
|---|
| 17 | |
|---|
| 18 | <servlet-mapping> |
|---|
| 19 | <servlet-name>BridgeDb</servlet-name> |
|---|
| 20 | <url-pattern>/bridgedb/*</url-pattern> |
|---|
| 21 | </servlet-mapping> |
|---|
| 22 | </web-app> |
|---|
| 23 | |
|---|