service-endpoint-editor/src/main/webapp/WEB-INF/web.xml

25 lines
859 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5">
<!-- Servlets -->
<servlet>
<servlet-name>serviceendpointEditor</servlet-name>
<servlet-class>org.gcube.portlets.admin.sepeditor.server.RuntimeResourceCreatorServiceImpl</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>serviceendpointEditor</servlet-name>
<url-pattern>/sepeditor/serviceendpointEditor</url-pattern>
</servlet-mapping>
<!-- Default page to serve -->
<welcome-file-list>
<welcome-file>RuntimeResourceCreator.html</welcome-file>
</welcome-file-list>
</web-app>