9 package com.proalpha.pds.templates.jaxb;
11 import java.util.ArrayList;
12 import java.util.List;
13 import javax.xml.bind.annotation.XmlAccessType;
14 import javax.xml.bind.annotation.XmlAccessorType;
15 import javax.xml.bind.annotation.XmlElement;
16 import javax.xml.bind.annotation.XmlRootElement;
17 import javax.xml.bind.annotation.XmlType;
51 @XmlAccessorType(XmlAccessType.FIELD)
52 @XmlType(name =
"", propOrder = {
55 @XmlRootElement(name =
"ttUserExits")
83 if (ttUserExitsRow ==
null) {
86 return this.ttUserExitsRow;
111 @XmlAccessorType(XmlAccessType.FIELD)
112 @XmlType(name =
"", propOrder = {
117 public static class TtUserExitsRow {
119 @XmlElement(name =
"UserExitName", required =
true, nillable =
true)
120 protected String userExitName;
121 @XmlElement(name = "IsSpecialUserExit", required = true, type = Boolean.class, nillable = true)
122 protected Boolean isSpecialUserExit;
123 @XmlElement(name = "UserExitOccurrence", required = true, type = Integer.class, nillable = true)
124 protected Integer userExitOccurrence;
134 public String getUserExitName() {
146 public void setUserExitName(String value) {
147 this.userExitName = value;
158 public Boolean isIsSpecialUserExit() {
159 return isSpecialUserExit;
170 public void setIsSpecialUserExit(Boolean value) {
171 this.isSpecialUserExit = value;
182 public Integer getUserExitOccurrence() {
183 return userExitOccurrence;
194 public void setUserExitOccurrence(Integer value) {
195 this.userExitOccurrence = value;
List< TtUserExits.TtUserExitsRow > getTtUserExitsRow()