Initial commit

This commit is contained in:
Ivaylo Ivanov
2018-05-03 14:39:53 +02:00
commit 8ee596bc68
53 changed files with 1254 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
Manifest-Version: 1.0
Built-By: ivo
Created-By: IntelliJ IDEA
Build-Jdk: 10.0.1

View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version="4.0">
<servlet>
<servlet-name>IBM CIC</servlet-name>
<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>jersey.config.server.provider.packages</param-name>
<param-value>com.ibm_cic</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>IBM CIC</servlet-name>
<url-pattern>/rest/*</url-pattern>
</servlet-mapping>
</web-app>

View File

@@ -0,0 +1,16 @@
<%--
Created by IntelliJ IDEA.
User: ivo
Date: 5/3/18
Time: 12:16 AM
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>$Title$</title>
</head>
<body>
$END$
</body>
</html>