summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/bwlp/thrift/iface/LectureRead.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/openslx/bwlp/thrift/iface/LectureRead.java')
-rw-r--r--src/main/java/org/openslx/bwlp/thrift/iface/LectureRead.java339
1 files changed, 250 insertions, 89 deletions
diff --git a/src/main/java/org/openslx/bwlp/thrift/iface/LectureRead.java b/src/main/java/org/openslx/bwlp/thrift/iface/LectureRead.java
index 9ba4c28..1075a49 100644
--- a/src/main/java/org/openslx/bwlp/thrift/iface/LectureRead.java
+++ b/src/main/java/org/openslx/bwlp/thrift/iface/LectureRead.java
@@ -34,7 +34,7 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked"})
-@Generated(value = "Autogenerated by Thrift Compiler (0.9.3)", date = "2017-09-06")
+@Generated(value = "Autogenerated by Thrift Compiler (0.9.3)", date = "2018-06-13")
public class LectureRead implements org.apache.thrift.TBase<LectureRead, LectureRead._Fields>, java.io.Serializable, Cloneable, Comparable<LectureRead> {
private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("LectureRead");
@@ -66,6 +66,7 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
private static final org.apache.thrift.protocol.TField LIMIT_TO_ALLOWED_USERS_FIELD_DESC = new org.apache.thrift.protocol.TField("limitToAllowedUsers", org.apache.thrift.protocol.TType.BOOL, (short)27);
private static final org.apache.thrift.protocol.TField HAS_USB_ACCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("hasUsbAccess", org.apache.thrift.protocol.TType.BOOL, (short)28);
private static final org.apache.thrift.protocol.TField NETWORK_SHARES_FIELD_DESC = new org.apache.thrift.protocol.TField("networkShares", org.apache.thrift.protocol.TType.LIST, (short)29);
+ private static final org.apache.thrift.protocol.TField LDAP_FILTERS_FIELD_DESC = new org.apache.thrift.protocol.TField("ldapFilters", org.apache.thrift.protocol.TType.LIST, (short)30);
private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
static {
@@ -101,6 +102,7 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
public boolean limitToAllowedUsers; // required
public boolean hasUsbAccess; // required
public List<NetShare> networkShares; // optional
+ public List<LdapFilter> ldapFilters; // optional
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
@@ -131,7 +133,8 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
LIMIT_TO_LOCATIONS((short)26, "limitToLocations"),
LIMIT_TO_ALLOWED_USERS((short)27, "limitToAllowedUsers"),
HAS_USB_ACCESS((short)28, "hasUsbAccess"),
- NETWORK_SHARES((short)29, "networkShares");
+ NETWORK_SHARES((short)29, "networkShares"),
+ LDAP_FILTERS((short)30, "ldapFilters");
private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
@@ -202,6 +205,8 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
return HAS_USB_ACCESS;
case 29: // NETWORK_SHARES
return NETWORK_SHARES;
+ case 30: // LDAP_FILTERS
+ return LDAP_FILTERS;
default:
return null;
}
@@ -256,7 +261,7 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
private static final int __LIMITTOALLOWEDUSERS_ISSET_ID = 11;
private static final int __HASUSBACCESS_ISSET_ID = 12;
private short __isset_bitfield = 0;
- private static final _Fields optionals[] = {_Fields.USER_PERMISSIONS,_Fields.NETWORK_SHARES};
+ private static final _Fields optionals[] = {_Fields.USER_PERMISSIONS,_Fields.NETWORK_SHARES,_Fields.LDAP_FILTERS};
public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
static {
Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
@@ -321,6 +326,9 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
tmpMap.put(_Fields.NETWORK_SHARES, new org.apache.thrift.meta_data.FieldMetaData("networkShares", org.apache.thrift.TFieldRequirementType.OPTIONAL,
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, NetShare.class))));
+ tmpMap.put(_Fields.LDAP_FILTERS, new org.apache.thrift.meta_data.FieldMetaData("ldapFilters", org.apache.thrift.TFieldRequirementType.OPTIONAL,
+ 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))));
metaDataMap = Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(LectureRead.class, metaDataMap);
}
@@ -472,6 +480,13 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
}
this.networkShares = __this__networkShares;
}
+ if (other.isSetLdapFilters()) {
+ List<LdapFilter> __this__ldapFilters = new ArrayList<LdapFilter>(other.ldapFilters.size());
+ for (LdapFilter other_element : other.ldapFilters) {
+ __this__ldapFilters.add(new LdapFilter(other_element));
+ }
+ this.ldapFilters = __this__ldapFilters;
+ }
}
public LectureRead deepCopy() {
@@ -521,6 +536,7 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
setHasUsbAccessIsSet(false);
this.hasUsbAccess = false;
this.networkShares = null;
+ this.ldapFilters = null;
}
public String getLectureId() {
@@ -1257,6 +1273,45 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
}
}
+ public int getLdapFiltersSize() {
+ return (this.ldapFilters == null) ? 0 : this.ldapFilters.size();
+ }
+
+ public java.util.Iterator<LdapFilter> getLdapFiltersIterator() {
+ return (this.ldapFilters == null) ? null : this.ldapFilters.iterator();
+ }
+
+ public void addToLdapFilters(LdapFilter elem) {
+ if (this.ldapFilters == null) {
+ this.ldapFilters = new ArrayList<LdapFilter>();
+ }
+ this.ldapFilters.add(elem);
+ }
+
+ public List<LdapFilter> getLdapFilters() {
+ return this.ldapFilters;
+ }
+
+ public LectureRead setLdapFilters(List<LdapFilter> ldapFilters) {
+ this.ldapFilters = ldapFilters;
+ return this;
+ }
+
+ public void unsetLdapFilters() {
+ this.ldapFilters = null;
+ }
+
+ /** Returns true if field ldapFilters is set (has been assigned a value) and false otherwise */
+ public boolean isSetLdapFilters() {
+ return this.ldapFilters != null;
+ }
+
+ public void setLdapFiltersIsSet(boolean value) {
+ if (!value) {
+ this.ldapFilters = null;
+ }
+ }
+
public void setFieldValue(_Fields field, Object value) {
switch (field) {
case LECTURE_ID:
@@ -1483,6 +1538,14 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
}
break;
+ case LDAP_FILTERS:
+ if (value == null) {
+ unsetLdapFilters();
+ } else {
+ setLdapFilters((List<LdapFilter>)value);
+ }
+ break;
+
}
}
@@ -1572,6 +1635,9 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
case NETWORK_SHARES:
return getNetworkShares();
+ case LDAP_FILTERS:
+ return getLdapFilters();
+
}
throw new IllegalStateException();
}
@@ -1639,6 +1705,8 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
return isSetHasUsbAccess();
case NETWORK_SHARES:
return isSetNetworkShares();
+ case LDAP_FILTERS:
+ return isSetLdapFilters();
}
throw new IllegalStateException();
}
@@ -1908,6 +1976,15 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
return false;
}
+ boolean this_present_ldapFilters = true && this.isSetLdapFilters();
+ boolean that_present_ldapFilters = true && that.isSetLdapFilters();
+ if (this_present_ldapFilters || that_present_ldapFilters) {
+ if (!(this_present_ldapFilters && that_present_ldapFilters))
+ return false;
+ if (!this.ldapFilters.equals(that.ldapFilters))
+ return false;
+ }
+
return true;
}
@@ -2055,6 +2132,11 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
if (present_networkShares)
list.add(networkShares);
+ boolean present_ldapFilters = true && (isSetLdapFilters());
+ list.add(present_ldapFilters);
+ if (present_ldapFilters)
+ list.add(ldapFilters);
+
return list.hashCode();
}
@@ -2346,6 +2428,16 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
return lastComparison;
}
}
+ lastComparison = Boolean.valueOf(isSetLdapFilters()).compareTo(other.isSetLdapFilters());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetLdapFilters()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ldapFilters, other.ldapFilters);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
return 0;
}
@@ -2541,6 +2633,16 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
}
first = false;
}
+ if (isSetLdapFilters()) {
+ if (!first) sb.append(", ");
+ sb.append("ldapFilters:");
+ if (this.ldapFilters == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.ldapFilters);
+ }
+ first = false;
+ }
sb.append(")");
return sb.toString();
}
@@ -2723,13 +2825,13 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
case 14: // NICS
if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
{
- org.apache.thrift.protocol.TList _list138 = iprot.readListBegin();
- struct.nics = new ArrayList<String>(_list138.size);
- String _elem139;
- for (int _i140 = 0; _i140 < _list138.size; ++_i140)
+ org.apache.thrift.protocol.TList _list146 = iprot.readListBegin();
+ struct.nics = new ArrayList<String>(_list146.size);
+ String _elem147;
+ for (int _i148 = 0; _i148 < _list146.size; ++_i148)
{
- _elem139 = iprot.readString();
- struct.nics.add(_elem139);
+ _elem147 = iprot.readString();
+ struct.nics.add(_elem147);
}
iprot.readListEnd();
}
@@ -2741,13 +2843,13 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
case 15: // ALLOWED_USERS
if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
{
- org.apache.thrift.protocol.TList _list141 = iprot.readListBegin();
- struct.allowedUsers = new ArrayList<String>(_list141.size);
- String _elem142;
- for (int _i143 = 0; _i143 < _list141.size; ++_i143)
+ org.apache.thrift.protocol.TList _list149 = iprot.readListBegin();
+ struct.allowedUsers = new ArrayList<String>(_list149.size);
+ String _elem150;
+ for (int _i151 = 0; _i151 < _list149.size; ++_i151)
{
- _elem142 = iprot.readString();
- struct.allowedUsers.add(_elem142);
+ _elem150 = iprot.readString();
+ struct.allowedUsers.add(_elem150);
}
iprot.readListEnd();
}
@@ -2759,14 +2861,14 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
case 16: // NETWORK_EXCEPTIONS
if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
{
- org.apache.thrift.protocol.TList _list144 = iprot.readListBegin();
- struct.networkExceptions = new ArrayList<NetRule>(_list144.size);
- NetRule _elem145;
- for (int _i146 = 0; _i146 < _list144.size; ++_i146)
+ org.apache.thrift.protocol.TList _list152 = iprot.readListBegin();
+ struct.networkExceptions = new ArrayList<NetRule>(_list152.size);
+ NetRule _elem153;
+ for (int _i154 = 0; _i154 < _list152.size; ++_i154)
{
- _elem145 = new NetRule();
- _elem145.read(iprot);
- struct.networkExceptions.add(_elem145);
+ _elem153 = new NetRule();
+ _elem153.read(iprot);
+ struct.networkExceptions.add(_elem153);
}
iprot.readListEnd();
}
@@ -2812,13 +2914,13 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
case 25: // LOCATION_IDS
if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
{
- org.apache.thrift.protocol.TList _list147 = iprot.readListBegin();
- struct.locationIds = new ArrayList<Integer>(_list147.size);
- int _elem148;
- for (int _i149 = 0; _i149 < _list147.size; ++_i149)
+ org.apache.thrift.protocol.TList _list155 = iprot.readListBegin();
+ struct.locationIds = new ArrayList<Integer>(_list155.size);
+ int _elem156;
+ for (int _i157 = 0; _i157 < _list155.size; ++_i157)
{
- _elem148 = iprot.readI32();
- struct.locationIds.add(_elem148);
+ _elem156 = iprot.readI32();
+ struct.locationIds.add(_elem156);
}
iprot.readListEnd();
}
@@ -2854,14 +2956,14 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
case 29: // NETWORK_SHARES
if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
{
- org.apache.thrift.protocol.TList _list150 = iprot.readListBegin();
- struct.networkShares = new ArrayList<NetShare>(_list150.size);
- NetShare _elem151;
- for (int _i152 = 0; _i152 < _list150.size; ++_i152)
+ org.apache.thrift.protocol.TList _list158 = iprot.readListBegin();
+ struct.networkShares = new ArrayList<NetShare>(_list158.size);
+ NetShare _elem159;
+ for (int _i160 = 0; _i160 < _list158.size; ++_i160)
{
- _elem151 = new NetShare();
- _elem151.read(iprot);
- struct.networkShares.add(_elem151);
+ _elem159 = new NetShare();
+ _elem159.read(iprot);
+ struct.networkShares.add(_elem159);
}
iprot.readListEnd();
}
@@ -2870,6 +2972,25 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
+ case 30: // LDAP_FILTERS
+ if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
+ {
+ org.apache.thrift.protocol.TList _list161 = iprot.readListBegin();
+ struct.ldapFilters = new ArrayList<LdapFilter>(_list161.size);
+ LdapFilter _elem162;
+ for (int _i163 = 0; _i163 < _list161.size; ++_i163)
+ {
+ _elem162 = new LdapFilter();
+ _elem162.read(iprot);
+ struct.ldapFilters.add(_elem162);
+ }
+ iprot.readListEnd();
+ }
+ struct.setLdapFiltersIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
default:
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
@@ -2937,9 +3058,9 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
oprot.writeFieldBegin(NICS_FIELD_DESC);
{
oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.nics.size()));
- for (String _iter153 : struct.nics)
+ for (String _iter164 : struct.nics)
{
- oprot.writeString(_iter153);
+ oprot.writeString(_iter164);
}
oprot.writeListEnd();
}
@@ -2949,9 +3070,9 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
oprot.writeFieldBegin(ALLOWED_USERS_FIELD_DESC);
{
oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.allowedUsers.size()));
- for (String _iter154 : struct.allowedUsers)
+ for (String _iter165 : struct.allowedUsers)
{
- oprot.writeString(_iter154);
+ oprot.writeString(_iter165);
}
oprot.writeListEnd();
}
@@ -2961,9 +3082,9 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
oprot.writeFieldBegin(NETWORK_EXCEPTIONS_FIELD_DESC);
{
oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.networkExceptions.size()));
- for (NetRule _iter155 : struct.networkExceptions)
+ for (NetRule _iter166 : struct.networkExceptions)
{
- _iter155.write(oprot);
+ _iter166.write(oprot);
}
oprot.writeListEnd();
}
@@ -3007,9 +3128,9 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
oprot.writeFieldBegin(LOCATION_IDS_FIELD_DESC);
{
oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I32, struct.locationIds.size()));
- for (int _iter156 : struct.locationIds)
+ for (int _iter167 : struct.locationIds)
{
- oprot.writeI32(_iter156);
+ oprot.writeI32(_iter167);
}
oprot.writeListEnd();
}
@@ -3029,9 +3150,23 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
oprot.writeFieldBegin(NETWORK_SHARES_FIELD_DESC);
{
oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.networkShares.size()));
- for (NetShare _iter157 : struct.networkShares)
+ for (NetShare _iter168 : struct.networkShares)
{
- _iter157.write(oprot);
+ _iter168.write(oprot);
+ }
+ oprot.writeListEnd();
+ }
+ oprot.writeFieldEnd();
+ }
+ }
+ if (struct.ldapFilters != null) {
+ if (struct.isSetLdapFilters()) {
+ oprot.writeFieldBegin(LDAP_FILTERS_FIELD_DESC);
+ {
+ oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.ldapFilters.size()));
+ for (LdapFilter _iter169 : struct.ldapFilters)
+ {
+ _iter169.write(oprot);
}
oprot.writeListEnd();
}
@@ -3140,7 +3275,10 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
if (struct.isSetNetworkShares()) {
optionals.set(27);
}
- oprot.writeBitSet(optionals, 28);
+ if (struct.isSetLdapFilters()) {
+ optionals.set(28);
+ }
+ oprot.writeBitSet(optionals, 29);
if (struct.isSetLectureId()) {
oprot.writeString(struct.lectureId);
}
@@ -3192,27 +3330,27 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
if (struct.isSetNics()) {
{
oprot.writeI32(struct.nics.size());
- for (String _iter158 : struct.nics)
+ for (String _iter170 : struct.nics)
{
- oprot.writeString(_iter158);
+ oprot.writeString(_iter170);
}
}
}
if (struct.isSetAllowedUsers()) {
{
oprot.writeI32(struct.allowedUsers.size());
- for (String _iter159 : struct.allowedUsers)
+ for (String _iter171 : struct.allowedUsers)
{
- oprot.writeString(_iter159);
+ oprot.writeString(_iter171);
}
}
}
if (struct.isSetNetworkExceptions()) {
{
oprot.writeI32(struct.networkExceptions.size());
- for (NetRule _iter160 : struct.networkExceptions)
+ for (NetRule _iter172 : struct.networkExceptions)
{
- _iter160.write(oprot);
+ _iter172.write(oprot);
}
}
}
@@ -3231,9 +3369,9 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
if (struct.isSetLocationIds()) {
{
oprot.writeI32(struct.locationIds.size());
- for (int _iter161 : struct.locationIds)
+ for (int _iter173 : struct.locationIds)
{
- oprot.writeI32(_iter161);
+ oprot.writeI32(_iter173);
}
}
}
@@ -3249,9 +3387,18 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
if (struct.isSetNetworkShares()) {
{
oprot.writeI32(struct.networkShares.size());
- for (NetShare _iter162 : struct.networkShares)
+ for (NetShare _iter174 : struct.networkShares)
{
- _iter162.write(oprot);
+ _iter174.write(oprot);
+ }
+ }
+ }
+ if (struct.isSetLdapFilters()) {
+ {
+ oprot.writeI32(struct.ldapFilters.size());
+ for (LdapFilter _iter175 : struct.ldapFilters)
+ {
+ _iter175.write(oprot);
}
}
}
@@ -3260,7 +3407,7 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
@Override
public void read(org.apache.thrift.protocol.TProtocol prot, LectureRead struct) throws org.apache.thrift.TException {
TTupleProtocol iprot = (TTupleProtocol) prot;
- BitSet incoming = iprot.readBitSet(28);
+ BitSet incoming = iprot.readBitSet(29);
if (incoming.get(0)) {
struct.lectureId = iprot.readString();
struct.setLectureIdIsSet(true);
@@ -3327,40 +3474,40 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
}
if (incoming.get(16)) {
{
- org.apache.thrift.protocol.TList _list163 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
- struct.nics = new ArrayList<String>(_list163.size);
- String _elem164;
- for (int _i165 = 0; _i165 < _list163.size; ++_i165)
+ org.apache.thrift.protocol.TList _list176 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+ struct.nics = new ArrayList<String>(_list176.size);
+ String _elem177;
+ for (int _i178 = 0; _i178 < _list176.size; ++_i178)
{
- _elem164 = iprot.readString();
- struct.nics.add(_elem164);
+ _elem177 = iprot.readString();
+ struct.nics.add(_elem177);
}
}
struct.setNicsIsSet(true);
}
if (incoming.get(17)) {
{
- org.apache.thrift.protocol.TList _list166 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
- struct.allowedUsers = new ArrayList<String>(_list166.size);
- String _elem167;
- for (int _i168 = 0; _i168 < _list166.size; ++_i168)
+ org.apache.thrift.protocol.TList _list179 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+ struct.allowedUsers = new ArrayList<String>(_list179.size);
+ String _elem180;
+ for (int _i181 = 0; _i181 < _list179.size; ++_i181)
{
- _elem167 = iprot.readString();
- struct.allowedUsers.add(_elem167);
+ _elem180 = iprot.readString();
+ struct.allowedUsers.add(_elem180);
}
}
struct.setAllowedUsersIsSet(true);
}
if (incoming.get(18)) {
{
- org.apache.thrift.protocol.TList _list169 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
- struct.networkExceptions = new ArrayList<NetRule>(_list169.size);
- NetRule _elem170;
- for (int _i171 = 0; _i171 < _list169.size; ++_i171)
+ org.apache.thrift.protocol.TList _list182 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
+ struct.networkExceptions = new ArrayList<NetRule>(_list182.size);
+ NetRule _elem183;
+ for (int _i184 = 0; _i184 < _list182.size; ++_i184)
{
- _elem170 = new NetRule();
- _elem170.read(iprot);
- struct.networkExceptions.add(_elem170);
+ _elem183 = new NetRule();
+ _elem183.read(iprot);
+ struct.networkExceptions.add(_elem183);
}
}
struct.setNetworkExceptionsIsSet(true);
@@ -3385,13 +3532,13 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
}
if (incoming.get(23)) {
{
- org.apache.thrift.protocol.TList _list172 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I32, iprot.readI32());
- struct.locationIds = new ArrayList<Integer>(_list172.size);
- int _elem173;
- for (int _i174 = 0; _i174 < _list172.size; ++_i174)
+ org.apache.thrift.protocol.TList _list185 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I32, iprot.readI32());
+ struct.locationIds = new ArrayList<Integer>(_list185.size);
+ int _elem186;
+ for (int _i187 = 0; _i187 < _list185.size; ++_i187)
{
- _elem173 = iprot.readI32();
- struct.locationIds.add(_elem173);
+ _elem186 = iprot.readI32();
+ struct.locationIds.add(_elem186);
}
}
struct.setLocationIdsIsSet(true);
@@ -3410,18 +3557,32 @@ public class LectureRead implements org.apache.thrift.TBase<LectureRead, Lecture
}
if (incoming.get(27)) {
{
- org.apache.thrift.protocol.TList _list175 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
- struct.networkShares = new ArrayList<NetShare>(_list175.size);
- NetShare _elem176;
- for (int _i177 = 0; _i177 < _list175.size; ++_i177)
+ org.apache.thrift.protocol.TList _list188 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
+ struct.networkShares = new ArrayList<NetShare>(_list188.size);
+ NetShare _elem189;
+ for (int _i190 = 0; _i190 < _list188.size; ++_i190)
{
- _elem176 = new NetShare();
- _elem176.read(iprot);
- struct.networkShares.add(_elem176);
+ _elem189 = new NetShare();
+ _elem189.read(iprot);
+ struct.networkShares.add(_elem189);
}
}
struct.setNetworkSharesIsSet(true);
}
+ if (incoming.get(28)) {
+ {
+ org.apache.thrift.protocol.TList _list191 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
+ struct.ldapFilters = new ArrayList<LdapFilter>(_list191.size);
+ LdapFilter _elem192;
+ for (int _i193 = 0; _i193 < _list191.size; ++_i193)
+ {
+ _elem192 = new LdapFilter();
+ _elem192.read(iprot);
+ struct.ldapFilters.add(_elem192);
+ }
+ }
+ struct.setLdapFiltersIsSet(true);
+ }
}
}