forked from cicsdev/cics-java-liberty-restapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCICSEnvironment.java
43 lines (34 loc) · 1.41 KB
/
CICSEnvironment.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/* 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.bean;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(XmlAccessType.NONE)
@XmlType(name = "cicsEnvironment")
public class CICSEnvironment {
@XmlElement(name = "cicsProduct")
private String prod;
@XmlElement(name = "cicsVersion")
private String cicsVer;
public String getProd() {
return prod;
}
public String getCicsVer() {
return cicsVer;
}
public void setProd(String prod) {
this.prod = prod;
}
public void setCicsVer(String cicsVer) {
this.cicsVer = cicsVer;
}
}