forked from cicsdev/cics-java-liberty-restapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCICSApplication.java
19 lines (15 loc) · 882 Bytes
/
CICSApplication.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Licensed Materials - Property of IBM */
/* */
/* SAMPLE */
/* */
/* (c) Copyright IBM Corp. 2016 All Rights Reserved */
/* */
/* US Government Users Restricted Rights - Use, duplication or disclosure */
/* restricted by GSA ADP Schedule Contract with IBM Corp */
/* */
package com.ibm.cicsdev.restapp;
import javax.ws.rs.ApplicationPath;
import javax.ws.rs.core.Application;
@ApplicationPath("rest/")
public class CICSApplication extends Application {
}