summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/bwlp/thrift/iface/PredefinedData.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/openslx/bwlp/thrift/iface/PredefinedData.java')
-rw-r--r--src/main/java/org/openslx/bwlp/thrift/iface/PredefinedData.java400
1 files changed, 359 insertions, 41 deletions
diff --git a/src/main/java/org/openslx/bwlp/thrift/iface/PredefinedData.java b/src/main/java/org/openslx/bwlp/thrift/iface/PredefinedData.java
index 67e2463..4032b4e 100644
--- a/src/main/java/org/openslx/bwlp/thrift/iface/PredefinedData.java
+++ b/src/main/java/org/openslx/bwlp/thrift/iface/PredefinedData.java
@@ -34,12 +34,14 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked"})
-@Generated(value = "Autogenerated by Thrift Compiler (0.9.3)", date = "2018-11-23")
+@Generated(value = "Autogenerated by Thrift Compiler (0.9.3)", date = "2019-02-25")
public class PredefinedData implements org.apache.thrift.TBase<PredefinedData, PredefinedData._Fields>, java.io.Serializable, Cloneable, Comparable<PredefinedData> {
private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("PredefinedData");
private static final org.apache.thrift.protocol.TField NET_SHARES_FIELD_DESC = new org.apache.thrift.protocol.TField("netShares", org.apache.thrift.protocol.TType.LIST, (short)1);
private static final org.apache.thrift.protocol.TField LDAP_FILTER_FIELD_DESC = new org.apache.thrift.protocol.TField("ldapFilter", org.apache.thrift.protocol.TType.LIST, (short)2);
+ private static final org.apache.thrift.protocol.TField RUN_SCRIPTS_FIELD_DESC = new org.apache.thrift.protocol.TField("runScripts", org.apache.thrift.protocol.TType.LIST, (short)3);
+ private static final org.apache.thrift.protocol.TField NETWORK_EXCEPTIONS_FIELD_DESC = new org.apache.thrift.protocol.TField("networkExceptions", org.apache.thrift.protocol.TType.LIST, (short)4);
private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
static {
@@ -49,11 +51,15 @@ public class PredefinedData implements org.apache.thrift.TBase<PredefinedData, P
public List<NetShare> netShares; // required
public List<LdapFilter> ldapFilter; // required
+ public List<PresetRunScript> runScripts; // required
+ public List<PresetNetRule> networkExceptions; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
NET_SHARES((short)1, "netShares"),
- LDAP_FILTER((short)2, "ldapFilter");
+ LDAP_FILTER((short)2, "ldapFilter"),
+ RUN_SCRIPTS((short)3, "runScripts"),
+ NETWORK_EXCEPTIONS((short)4, "networkExceptions");
private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
@@ -72,6 +78,10 @@ public class PredefinedData implements org.apache.thrift.TBase<PredefinedData, P
return NET_SHARES;
case 2: // LDAP_FILTER
return LDAP_FILTER;
+ case 3: // RUN_SCRIPTS
+ return RUN_SCRIPTS;
+ case 4: // NETWORK_EXCEPTIONS
+ return NETWORK_EXCEPTIONS;
default:
return null;
}
@@ -121,6 +131,12 @@ public class PredefinedData implements org.apache.thrift.TBase<PredefinedData, P
tmpMap.put(_Fields.LDAP_FILTER, new org.apache.thrift.meta_data.FieldMetaData("ldapFilter", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST,
new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, LdapFilter.class))));
+ tmpMap.put(_Fields.RUN_SCRIPTS, new org.apache.thrift.meta_data.FieldMetaData("runScripts", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST,
+ new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, PresetRunScript.class))));
+ tmpMap.put(_Fields.NETWORK_EXCEPTIONS, new org.apache.thrift.meta_data.FieldMetaData("networkExceptions", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST,
+ new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, PresetNetRule.class))));
metaDataMap = Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(PredefinedData.class, metaDataMap);
}
@@ -130,11 +146,15 @@ public class PredefinedData implements org.apache.thrift.TBase<PredefinedData, P
public PredefinedData(
List<NetShare> netShares,
- List<LdapFilter> ldapFilter)
+ List<LdapFilter> ldapFilter,
+ List<PresetRunScript> runScripts,
+ List<PresetNetRule> networkExceptions)
{
this();
this.netShares = netShares;
this.ldapFilter = ldapFilter;
+ this.runScripts = runScripts;
+ this.networkExceptions = networkExceptions;
}
/**
@@ -155,6 +175,20 @@ public class PredefinedData implements org.apache.thrift.TBase<PredefinedData, P
}
this.ldapFilter = __this__ldapFilter;
}
+ if (other.isSetRunScripts()) {
+ List<PresetRunScript> __this__runScripts = new ArrayList<PresetRunScript>(other.runScripts.size());
+ for (PresetRunScript other_element : other.runScripts) {
+ __this__runScripts.add(new PresetRunScript(other_element));
+ }
+ this.runScripts = __this__runScripts;
+ }
+ if (other.isSetNetworkExceptions()) {
+ List<PresetNetRule> __this__networkExceptions = new ArrayList<PresetNetRule>(other.networkExceptions.size());
+ for (PresetNetRule other_element : other.networkExceptions) {
+ __this__networkExceptions.add(new PresetNetRule(other_element));
+ }
+ this.networkExceptions = __this__networkExceptions;
+ }
}
public PredefinedData deepCopy() {
@@ -165,6 +199,8 @@ public class PredefinedData implements org.apache.thrift.TBase<PredefinedData, P
public void clear() {
this.netShares = null;
this.ldapFilter = null;
+ this.runScripts = null;
+ this.networkExceptions = null;
}
public int getNetSharesSize() {
@@ -245,6 +281,84 @@ public class PredefinedData implements org.apache.thrift.TBase<PredefinedData, P
}
}
+ public int getRunScriptsSize() {
+ return (this.runScripts == null) ? 0 : this.runScripts.size();
+ }
+
+ public java.util.Iterator<PresetRunScript> getRunScriptsIterator() {
+ return (this.runScripts == null) ? null : this.runScripts.iterator();
+ }
+
+ public void addToRunScripts(PresetRunScript elem) {
+ if (this.runScripts == null) {
+ this.runScripts = new ArrayList<PresetRunScript>();
+ }
+ this.runScripts.add(elem);
+ }
+
+ public List<PresetRunScript> getRunScripts() {
+ return this.runScripts;
+ }
+
+ public PredefinedData setRunScripts(List<PresetRunScript> runScripts) {
+ this.runScripts = runScripts;
+ return this;
+ }
+
+ public void unsetRunScripts() {
+ this.runScripts = null;
+ }
+
+ /** Returns true if field runScripts is set (has been assigned a value) and false otherwise */
+ public boolean isSetRunScripts() {
+ return this.runScripts != null;
+ }
+
+ public void setRunScriptsIsSet(boolean value) {
+ if (!value) {
+ this.runScripts = null;
+ }
+ }
+
+ public int getNetworkExceptionsSize() {
+ return (this.networkExceptions == null) ? 0 : this.networkExceptions.size();
+ }
+
+ public java.util.Iterator<PresetNetRule> getNetworkExceptionsIterator() {
+ return (this.networkExceptions == null) ? null : this.networkExceptions.iterator();
+ }
+
+ public void addToNetworkExceptions(PresetNetRule elem) {
+ if (this.networkExceptions == null) {
+ this.networkExceptions = new ArrayList<PresetNetRule>();
+ }
+ this.networkExceptions.add(elem);
+ }
+
+ public List<PresetNetRule> getNetworkExceptions() {
+ return this.networkExceptions;
+ }
+
+ public PredefinedData setNetworkExceptions(List<PresetNetRule> networkExceptions) {
+ this.networkExceptions = networkExceptions;
+ return this;
+ }
+
+ public void unsetNetworkExceptions() {
+ this.networkExceptions = null;
+ }
+
+ /** Returns true if field networkExceptions is set (has been assigned a value) and false otherwise */
+ public boolean isSetNetworkExceptions() {
+ return this.networkExceptions != null;
+ }
+
+ public void setNetworkExceptionsIsSet(boolean value) {
+ if (!value) {
+ this.networkExceptions = null;
+ }
+ }
+
public void setFieldValue(_Fields field, Object value) {
switch (field) {
case NET_SHARES:
@@ -263,6 +377,22 @@ public class PredefinedData implements org.apache.thrift.TBase<PredefinedData, P
}
break;
+ case RUN_SCRIPTS:
+ if (value == null) {
+ unsetRunScripts();
+ } else {
+ setRunScripts((List<PresetRunScript>)value);
+ }
+ break;
+
+ case NETWORK_EXCEPTIONS:
+ if (value == null) {
+ unsetNetworkExceptions();
+ } else {
+ setNetworkExceptions((List<PresetNetRule>)value);
+ }
+ break;
+
}
}
@@ -274,6 +404,12 @@ public class PredefinedData implements org.apache.thrift.TBase<PredefinedData, P
case LDAP_FILTER:
return getLdapFilter();
+ case RUN_SCRIPTS:
+ return getRunScripts();
+
+ case NETWORK_EXCEPTIONS:
+ return getNetworkExceptions();
+
}
throw new IllegalStateException();
}
@@ -289,6 +425,10 @@ public class PredefinedData implements org.apache.thrift.TBase<PredefinedData, P
return isSetNetShares();
case LDAP_FILTER:
return isSetLdapFilter();
+ case RUN_SCRIPTS:
+ return isSetRunScripts();
+ case NETWORK_EXCEPTIONS:
+ return isSetNetworkExceptions();
}
throw new IllegalStateException();
}
@@ -324,6 +464,24 @@ public class PredefinedData implements org.apache.thrift.TBase<PredefinedData, P
return false;
}
+ boolean this_present_runScripts = true && this.isSetRunScripts();
+ boolean that_present_runScripts = true && that.isSetRunScripts();
+ if (this_present_runScripts || that_present_runScripts) {
+ if (!(this_present_runScripts && that_present_runScripts))
+ return false;
+ if (!this.runScripts.equals(that.runScripts))
+ return false;
+ }
+
+ boolean this_present_networkExceptions = true && this.isSetNetworkExceptions();
+ boolean that_present_networkExceptions = true && that.isSetNetworkExceptions();
+ if (this_present_networkExceptions || that_present_networkExceptions) {
+ if (!(this_present_networkExceptions && that_present_networkExceptions))
+ return false;
+ if (!this.networkExceptions.equals(that.networkExceptions))
+ return false;
+ }
+
return true;
}
@@ -341,6 +499,16 @@ public class PredefinedData implements org.apache.thrift.TBase<PredefinedData, P
if (present_ldapFilter)
list.add(ldapFilter);
+ boolean present_runScripts = true && (isSetRunScripts());
+ list.add(present_runScripts);
+ if (present_runScripts)
+ list.add(runScripts);
+
+ boolean present_networkExceptions = true && (isSetNetworkExceptions());
+ list.add(present_networkExceptions);
+ if (present_networkExceptions)
+ list.add(networkExceptions);
+
return list.hashCode();
}
@@ -372,6 +540,26 @@ public class PredefinedData implements org.apache.thrift.TBase<PredefinedData, P
return lastComparison;
}
}
+ lastComparison = Boolean.valueOf(isSetRunScripts()).compareTo(other.isSetRunScripts());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetRunScripts()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.runScripts, other.runScripts);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
+ lastComparison = Boolean.valueOf(isSetNetworkExceptions()).compareTo(other.isSetNetworkExceptions());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetNetworkExceptions()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.networkExceptions, other.networkExceptions);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
return 0;
}
@@ -407,6 +595,22 @@ public class PredefinedData implements org.apache.thrift.TBase<PredefinedData, P
sb.append(this.ldapFilter);
}
first = false;
+ if (!first) sb.append(", ");
+ sb.append("runScripts:");
+ if (this.runScripts == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.runScripts);
+ }
+ first = false;
+ if (!first) sb.append(", ");
+ sb.append("networkExceptions:");
+ if (this.networkExceptions == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.networkExceptions);
+ }
+ first = false;
sb.append(")");
return sb.toString();
}
@@ -453,14 +657,14 @@ public class PredefinedData implements org.apache.thrift.TBase<PredefinedData, P
case 1: // NET_SHARES
if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
{
- org.apache.thrift.protocol.TList _list90 = iprot.readListBegin();
- struct.netShares = new ArrayList<NetShare>(_list90.size);
- NetShare _elem91;
- for (int _i92 = 0; _i92 < _list90.size; ++_i92)
+ org.apache.thrift.protocol.TList _list106 = iprot.readListBegin();
+ struct.netShares = new ArrayList<NetShare>(_list106.size);
+ NetShare _elem107;
+ for (int _i108 = 0; _i108 < _list106.size; ++_i108)
{
- _elem91 = new NetShare();
- _elem91.read(iprot);
- struct.netShares.add(_elem91);
+ _elem107 = new NetShare();
+ _elem107.read(iprot);
+ struct.netShares.add(_elem107);
}
iprot.readListEnd();
}
@@ -472,14 +676,14 @@ public class PredefinedData implements org.apache.thrift.TBase<PredefinedData, P
case 2: // LDAP_FILTER
if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
{
- org.apache.thrift.protocol.TList _list93 = iprot.readListBegin();
- struct.ldapFilter = new ArrayList<LdapFilter>(_list93.size);
- LdapFilter _elem94;
- for (int _i95 = 0; _i95 < _list93.size; ++_i95)
+ org.apache.thrift.protocol.TList _list109 = iprot.readListBegin();
+ struct.ldapFilter = new ArrayList<LdapFilter>(_list109.size);
+ LdapFilter _elem110;
+ for (int _i111 = 0; _i111 < _list109.size; ++_i111)
{
- _elem94 = new LdapFilter();
- _elem94.read(iprot);
- struct.ldapFilter.add(_elem94);
+ _elem110 = new LdapFilter();
+ _elem110.read(iprot);
+ struct.ldapFilter.add(_elem110);
}
iprot.readListEnd();
}
@@ -488,6 +692,44 @@ public class PredefinedData implements org.apache.thrift.TBase<PredefinedData, P
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
+ case 3: // RUN_SCRIPTS
+ if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
+ {
+ org.apache.thrift.protocol.TList _list112 = iprot.readListBegin();
+ struct.runScripts = new ArrayList<PresetRunScript>(_list112.size);
+ PresetRunScript _elem113;
+ for (int _i114 = 0; _i114 < _list112.size; ++_i114)
+ {
+ _elem113 = new PresetRunScript();
+ _elem113.read(iprot);
+ struct.runScripts.add(_elem113);
+ }
+ iprot.readListEnd();
+ }
+ struct.setRunScriptsIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ case 4: // NETWORK_EXCEPTIONS
+ if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
+ {
+ org.apache.thrift.protocol.TList _list115 = iprot.readListBegin();
+ struct.networkExceptions = new ArrayList<PresetNetRule>(_list115.size);
+ PresetNetRule _elem116;
+ for (int _i117 = 0; _i117 < _list115.size; ++_i117)
+ {
+ _elem116 = new PresetNetRule();
+ _elem116.read(iprot);
+ struct.networkExceptions.add(_elem116);
+ }
+ iprot.readListEnd();
+ }
+ struct.setNetworkExceptionsIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
default:
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
@@ -507,9 +749,9 @@ public class PredefinedData implements org.apache.thrift.TBase<PredefinedData, P
oprot.writeFieldBegin(NET_SHARES_FIELD_DESC);
{
oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.netShares.size()));
- for (NetShare _iter96 : struct.netShares)
+ for (NetShare _iter118 : struct.netShares)
{
- _iter96.write(oprot);
+ _iter118.write(oprot);
}
oprot.writeListEnd();
}
@@ -519,9 +761,33 @@ public class PredefinedData implements org.apache.thrift.TBase<PredefinedData, P
oprot.writeFieldBegin(LDAP_FILTER_FIELD_DESC);
{
oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.ldapFilter.size()));
- for (LdapFilter _iter97 : struct.ldapFilter)
+ for (LdapFilter _iter119 : struct.ldapFilter)
+ {
+ _iter119.write(oprot);
+ }
+ oprot.writeListEnd();
+ }
+ oprot.writeFieldEnd();
+ }
+ if (struct.runScripts != null) {
+ oprot.writeFieldBegin(RUN_SCRIPTS_FIELD_DESC);
+ {
+ oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.runScripts.size()));
+ for (PresetRunScript _iter120 : struct.runScripts)
{
- _iter97.write(oprot);
+ _iter120.write(oprot);
+ }
+ oprot.writeListEnd();
+ }
+ oprot.writeFieldEnd();
+ }
+ if (struct.networkExceptions != null) {
+ oprot.writeFieldBegin(NETWORK_EXCEPTIONS_FIELD_DESC);
+ {
+ oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.networkExceptions.size()));
+ for (PresetNetRule _iter121 : struct.networkExceptions)
+ {
+ _iter121.write(oprot);
}
oprot.writeListEnd();
}
@@ -551,22 +817,46 @@ public class PredefinedData implements org.apache.thrift.TBase<PredefinedData, P
if (struct.isSetLdapFilter()) {
optionals.set(1);
}
- oprot.writeBitSet(optionals, 2);
+ if (struct.isSetRunScripts()) {
+ optionals.set(2);
+ }
+ if (struct.isSetNetworkExceptions()) {
+ optionals.set(3);
+ }
+ oprot.writeBitSet(optionals, 4);
if (struct.isSetNetShares()) {
{
oprot.writeI32(struct.netShares.size());
- for (NetShare _iter98 : struct.netShares)
+ for (NetShare _iter122 : struct.netShares)
{
- _iter98.write(oprot);
+ _iter122.write(oprot);
}
}
}
if (struct.isSetLdapFilter()) {
{
oprot.writeI32(struct.ldapFilter.size());
- for (LdapFilter _iter99 : struct.ldapFilter)
+ for (LdapFilter _iter123 : struct.ldapFilter)
{
- _iter99.write(oprot);
+ _iter123.write(oprot);
+ }
+ }
+ }
+ if (struct.isSetRunScripts()) {
+ {
+ oprot.writeI32(struct.runScripts.size());
+ for (PresetRunScript _iter124 : struct.runScripts)
+ {
+ _iter124.write(oprot);
+ }
+ }
+ }
+ if (struct.isSetNetworkExceptions()) {
+ {
+ oprot.writeI32(struct.networkExceptions.size());
+ for (PresetNetRule _iter125 : struct.networkExceptions)
+ {
+ _iter125.write(oprot);
}
}
}
@@ -575,35 +865,63 @@ public class PredefinedData implements org.apache.thrift.TBase<PredefinedData, P
@Override
public void read(org.apache.thrift.protocol.TProtocol prot, PredefinedData struct) throws org.apache.thrift.TException {
TTupleProtocol iprot = (TTupleProtocol) prot;
- BitSet incoming = iprot.readBitSet(2);
+ BitSet incoming = iprot.readBitSet(4);
if (incoming.get(0)) {
{
- org.apache.thrift.protocol.TList _list100 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
- struct.netShares = new ArrayList<NetShare>(_list100.size);
- NetShare _elem101;
- for (int _i102 = 0; _i102 < _list100.size; ++_i102)
+ org.apache.thrift.protocol.TList _list126 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
+ struct.netShares = new ArrayList<NetShare>(_list126.size);
+ NetShare _elem127;
+ for (int _i128 = 0; _i128 < _list126.size; ++_i128)
{
- _elem101 = new NetShare();
- _elem101.read(iprot);
- struct.netShares.add(_elem101);
+ _elem127 = new NetShare();
+ _elem127.read(iprot);
+ struct.netShares.add(_elem127);
}
}
struct.setNetSharesIsSet(true);
}
if (incoming.get(1)) {
{
- org.apache.thrift.protocol.TList _list103 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
- struct.ldapFilter = new ArrayList<LdapFilter>(_list103.size);
- LdapFilter _elem104;
- for (int _i105 = 0; _i105 < _list103.size; ++_i105)
+ org.apache.thrift.protocol.TList _list129 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
+ struct.ldapFilter = new ArrayList<LdapFilter>(_list129.size);
+ LdapFilter _elem130;
+ for (int _i131 = 0; _i131 < _list129.size; ++_i131)
{
- _elem104 = new LdapFilter();
- _elem104.read(iprot);
- struct.ldapFilter.add(_elem104);
+ _elem130 = new LdapFilter();
+ _elem130.read(iprot);
+ struct.ldapFilter.add(_elem130);
}
}
struct.setLdapFilterIsSet(true);
}
+ if (incoming.get(2)) {
+ {
+ org.apache.thrift.protocol.TList _list132 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
+ struct.runScripts = new ArrayList<PresetRunScript>(_list132.size);
+ PresetRunScript _elem133;
+ for (int _i134 = 0; _i134 < _list132.size; ++_i134)
+ {
+ _elem133 = new PresetRunScript();
+ _elem133.read(iprot);
+ struct.runScripts.add(_elem133);
+ }
+ }
+ struct.setRunScriptsIsSet(true);
+ }
+ if (incoming.get(3)) {
+ {
+ org.apache.thrift.protocol.TList _list135 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
+ struct.networkExceptions = new ArrayList<PresetNetRule>(_list135.size);
+ PresetNetRule _elem136;
+ for (int _i137 = 0; _i137 < _list135.size; ++_i137)
+ {
+ _elem136 = new PresetNetRule();
+ _elem136.read(iprot);
+ struct.networkExceptions.add(_elem136);
+ }
+ }
+ struct.setNetworkExceptionsIsSet(true);
+ }
}
}