forked from cicsdev/cics-java-liberty-restapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ReverseResult.java
65 lines (50 loc) · 1.89 KB
/
ReverseResult.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/* 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 = "linkResult")
public class ReverseResult {
@XmlElement(name = "time")
protected String time;
@XmlElement(name = "original")
protected String originalText;
@XmlElement(name = "reverse")
protected String reverseText;
@XmlElement(name = "truncated")
protected boolean truncated;
public boolean isTruncated() {
return truncated;
}
public void setTruncated(boolean truncated) {
this.truncated = truncated;
}
public String getTime() {
return time;
}
public void setTime(String time) {
this.time = time;
}
public String getOriginalText() {
return originalText;
}
public void setOriginalText(String originalText) {
this.originalText = originalText;
}
public String getReverseText() {
return reverseText;
}
public void setReverseText(String reverseText) {
this.reverseText = reverseText;
}
}