summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/bwlp/thrift/iface/LdapFilter.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/openslx/bwlp/thrift/iface/LdapFilter.java')
-rw-r--r--src/main/java/org/openslx/bwlp/thrift/iface/LdapFilter.java188
1 files changed, 82 insertions, 106 deletions
diff --git a/src/main/java/org/openslx/bwlp/thrift/iface/LdapFilter.java b/src/main/java/org/openslx/bwlp/thrift/iface/LdapFilter.java
index ba80e7b..3666868 100644
--- a/src/main/java/org/openslx/bwlp/thrift/iface/LdapFilter.java
+++ b/src/main/java/org/openslx/bwlp/thrift/iface/LdapFilter.java
@@ -1,40 +1,13 @@
/**
- * Autogenerated by Thrift Compiler (0.9.3)
+ * Autogenerated by Thrift Compiler (0.15.0)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
package org.openslx.bwlp.thrift.iface;
-import org.apache.thrift.scheme.IScheme;
-import org.apache.thrift.scheme.SchemeFactory;
-import org.apache.thrift.scheme.StandardScheme;
-
-import org.apache.thrift.scheme.TupleScheme;
-import org.apache.thrift.protocol.TTupleProtocol;
-import org.apache.thrift.protocol.TProtocolException;
-import org.apache.thrift.EncodingUtils;
-import org.apache.thrift.TException;
-import org.apache.thrift.async.AsyncMethodCallback;
-import org.apache.thrift.server.AbstractNonblockingServer.*;
-import java.util.List;
-import java.util.ArrayList;
-import java.util.Map;
-import java.util.HashMap;
-import java.util.EnumMap;
-import java.util.Set;
-import java.util.HashSet;
-import java.util.EnumSet;
-import java.util.Collections;
-import java.util.BitSet;
-import java.nio.ByteBuffer;
-import java.util.Arrays;
-import javax.annotation.Generated;
-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")
+@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"})
+@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.15.0)", date = "2021-12-17")
public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilter._Fields>, java.io.Serializable, Cloneable, Comparable<LdapFilter> {
private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("LdapFilter");
@@ -43,16 +16,13 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
private static final org.apache.thrift.protocol.TField FILTER_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("filterId", org.apache.thrift.protocol.TType.I32, (short)3);
private static final org.apache.thrift.protocol.TField TITLE_FIELD_DESC = new org.apache.thrift.protocol.TField("title", org.apache.thrift.protocol.TType.STRING, (short)4);
- private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
- static {
- schemes.put(StandardScheme.class, new LdapFilterStandardSchemeFactory());
- schemes.put(TupleScheme.class, new LdapFilterTupleSchemeFactory());
- }
+ private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new LdapFilterStandardSchemeFactory();
+ private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new LdapFilterTupleSchemeFactory();
- public String attribute; // required
- public String value; // required
+ public @org.apache.thrift.annotation.Nullable java.lang.String attribute; // required
+ public @org.apache.thrift.annotation.Nullable java.lang.String value; // required
public int filterId; // optional
- public String title; // optional
+ public @org.apache.thrift.annotation.Nullable java.lang.String title; // 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 {
@@ -61,10 +31,10 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
FILTER_ID((short)3, "filterId"),
TITLE((short)4, "title");
- private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
+ private static final java.util.Map<java.lang.String, _Fields> byName = new java.util.HashMap<java.lang.String, _Fields>();
static {
- for (_Fields field : EnumSet.allOf(_Fields.class)) {
+ for (_Fields field : java.util.EnumSet.allOf(_Fields.class)) {
byName.put(field.getFieldName(), field);
}
}
@@ -72,6 +42,7 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
/**
* Find the _Fields constant that matches fieldId, or null if its not found.
*/
+ @org.apache.thrift.annotation.Nullable
public static _Fields findByThriftId(int fieldId) {
switch(fieldId) {
case 1: // ATTRIBUTE
@@ -93,21 +64,22 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
*/
public static _Fields findByThriftIdOrThrow(int fieldId) {
_Fields fields = findByThriftId(fieldId);
- if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
+ if (fields == null) throw new java.lang.IllegalArgumentException("Field " + fieldId + " doesn't exist!");
return fields;
}
/**
* Find the _Fields constant that matches name, or null if its not found.
*/
- public static _Fields findByName(String name) {
+ @org.apache.thrift.annotation.Nullable
+ public static _Fields findByName(java.lang.String name) {
return byName.get(name);
}
private final short _thriftId;
- private final String _fieldName;
+ private final java.lang.String _fieldName;
- _Fields(short thriftId, String fieldName) {
+ _Fields(short thriftId, java.lang.String fieldName) {
_thriftId = thriftId;
_fieldName = fieldName;
}
@@ -116,7 +88,7 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
return _thriftId;
}
- public String getFieldName() {
+ public java.lang.String getFieldName() {
return _fieldName;
}
}
@@ -125,9 +97,9 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
private static final int __FILTERID_ISSET_ID = 0;
private byte __isset_bitfield = 0;
private static final _Fields optionals[] = {_Fields.FILTER_ID,_Fields.TITLE};
- public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
+ public static final java.util.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);
+ java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
tmpMap.put(_Fields.ATTRIBUTE, new org.apache.thrift.meta_data.FieldMetaData("attribute", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
tmpMap.put(_Fields.VALUE, new org.apache.thrift.meta_data.FieldMetaData("value", org.apache.thrift.TFieldRequirementType.DEFAULT,
@@ -136,7 +108,7 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I32)));
tmpMap.put(_Fields.TITLE, new org.apache.thrift.meta_data.FieldMetaData("title", org.apache.thrift.TFieldRequirementType.OPTIONAL,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
- metaDataMap = Collections.unmodifiableMap(tmpMap);
+ metaDataMap = java.util.Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(LdapFilter.class, metaDataMap);
}
@@ -144,8 +116,8 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
}
public LdapFilter(
- String attribute,
- String value)
+ java.lang.String attribute,
+ java.lang.String value)
{
this();
this.attribute = attribute;
@@ -182,11 +154,12 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
this.title = null;
}
- public String getAttribute() {
+ @org.apache.thrift.annotation.Nullable
+ public java.lang.String getAttribute() {
return this.attribute;
}
- public LdapFilter setAttribute(String attribute) {
+ public LdapFilter setAttribute(@org.apache.thrift.annotation.Nullable java.lang.String attribute) {
this.attribute = attribute;
return this;
}
@@ -206,11 +179,12 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
}
}
- public String getValue() {
+ @org.apache.thrift.annotation.Nullable
+ public java.lang.String getValue() {
return this.value;
}
- public LdapFilter setValue(String value) {
+ public LdapFilter setValue(@org.apache.thrift.annotation.Nullable java.lang.String value) {
this.value = value;
return this;
}
@@ -241,23 +215,24 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
}
public void unsetFilterId() {
- __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __FILTERID_ISSET_ID);
+ __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __FILTERID_ISSET_ID);
}
/** Returns true if field filterId is set (has been assigned a value) and false otherwise */
public boolean isSetFilterId() {
- return EncodingUtils.testBit(__isset_bitfield, __FILTERID_ISSET_ID);
+ return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __FILTERID_ISSET_ID);
}
public void setFilterIdIsSet(boolean value) {
- __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __FILTERID_ISSET_ID, value);
+ __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __FILTERID_ISSET_ID, value);
}
- public String getTitle() {
+ @org.apache.thrift.annotation.Nullable
+ public java.lang.String getTitle() {
return this.title;
}
- public LdapFilter setTitle(String title) {
+ public LdapFilter setTitle(@org.apache.thrift.annotation.Nullable java.lang.String title) {
this.title = title;
return this;
}
@@ -277,13 +252,13 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
}
}
- public void setFieldValue(_Fields field, Object value) {
+ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) {
switch (field) {
case ATTRIBUTE:
if (value == null) {
unsetAttribute();
} else {
- setAttribute((String)value);
+ setAttribute((java.lang.String)value);
}
break;
@@ -291,7 +266,7 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
if (value == null) {
unsetValue();
} else {
- setValue((String)value);
+ setValue((java.lang.String)value);
}
break;
@@ -299,7 +274,7 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
if (value == null) {
unsetFilterId();
} else {
- setFilterId((Integer)value);
+ setFilterId((java.lang.Integer)value);
}
break;
@@ -307,14 +282,15 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
if (value == null) {
unsetTitle();
} else {
- setTitle((String)value);
+ setTitle((java.lang.String)value);
}
break;
}
}
- public Object getFieldValue(_Fields field) {
+ @org.apache.thrift.annotation.Nullable
+ public java.lang.Object getFieldValue(_Fields field) {
switch (field) {
case ATTRIBUTE:
return getAttribute();
@@ -329,13 +305,13 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
return getTitle();
}
- throw new IllegalStateException();
+ throw new java.lang.IllegalStateException();
}
/** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
public boolean isSet(_Fields field) {
if (field == null) {
- throw new IllegalArgumentException();
+ throw new java.lang.IllegalArgumentException();
}
switch (field) {
@@ -348,13 +324,11 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
case TITLE:
return isSetTitle();
}
- throw new IllegalStateException();
+ throw new java.lang.IllegalStateException();
}
@Override
- public boolean equals(Object that) {
- if (that == null)
- return false;
+ public boolean equals(java.lang.Object that) {
if (that instanceof LdapFilter)
return this.equals((LdapFilter)that);
return false;
@@ -363,6 +337,8 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
public boolean equals(LdapFilter that) {
if (that == null)
return false;
+ if (this == that)
+ return true;
boolean this_present_attribute = true && this.isSetAttribute();
boolean that_present_attribute = true && that.isSetAttribute();
@@ -405,29 +381,25 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
@Override
public int hashCode() {
- List<Object> list = new ArrayList<Object>();
+ int hashCode = 1;
- boolean present_attribute = true && (isSetAttribute());
- list.add(present_attribute);
- if (present_attribute)
- list.add(attribute);
+ hashCode = hashCode * 8191 + ((isSetAttribute()) ? 131071 : 524287);
+ if (isSetAttribute())
+ hashCode = hashCode * 8191 + attribute.hashCode();
- boolean present_value = true && (isSetValue());
- list.add(present_value);
- if (present_value)
- list.add(value);
+ hashCode = hashCode * 8191 + ((isSetValue()) ? 131071 : 524287);
+ if (isSetValue())
+ hashCode = hashCode * 8191 + value.hashCode();
- boolean present_filterId = true && (isSetFilterId());
- list.add(present_filterId);
- if (present_filterId)
- list.add(filterId);
+ hashCode = hashCode * 8191 + ((isSetFilterId()) ? 131071 : 524287);
+ if (isSetFilterId())
+ hashCode = hashCode * 8191 + filterId;
- boolean present_title = true && (isSetTitle());
- list.add(present_title);
- if (present_title)
- list.add(title);
+ hashCode = hashCode * 8191 + ((isSetTitle()) ? 131071 : 524287);
+ if (isSetTitle())
+ hashCode = hashCode * 8191 + title.hashCode();
- return list.hashCode();
+ return hashCode;
}
@Override
@@ -438,7 +410,7 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
int lastComparison = 0;
- lastComparison = Boolean.valueOf(isSetAttribute()).compareTo(other.isSetAttribute());
+ lastComparison = java.lang.Boolean.compare(isSetAttribute(), other.isSetAttribute());
if (lastComparison != 0) {
return lastComparison;
}
@@ -448,7 +420,7 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
return lastComparison;
}
}
- lastComparison = Boolean.valueOf(isSetValue()).compareTo(other.isSetValue());
+ lastComparison = java.lang.Boolean.compare(isSetValue(), other.isSetValue());
if (lastComparison != 0) {
return lastComparison;
}
@@ -458,7 +430,7 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
return lastComparison;
}
}
- lastComparison = Boolean.valueOf(isSetFilterId()).compareTo(other.isSetFilterId());
+ lastComparison = java.lang.Boolean.compare(isSetFilterId(), other.isSetFilterId());
if (lastComparison != 0) {
return lastComparison;
}
@@ -468,7 +440,7 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
return lastComparison;
}
}
- lastComparison = Boolean.valueOf(isSetTitle()).compareTo(other.isSetTitle());
+ lastComparison = java.lang.Boolean.compare(isSetTitle(), other.isSetTitle());
if (lastComparison != 0) {
return lastComparison;
}
@@ -481,21 +453,22 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
return 0;
}
+ @org.apache.thrift.annotation.Nullable
public _Fields fieldForId(int fieldId) {
return _Fields.findByThriftId(fieldId);
}
public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException {
- schemes.get(iprot.getScheme()).getScheme().read(iprot, this);
+ scheme(iprot).read(iprot, this);
}
public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
- schemes.get(oprot.getScheme()).getScheme().write(oprot, this);
+ scheme(oprot).write(oprot, this);
}
@Override
- public String toString() {
- StringBuilder sb = new StringBuilder("LdapFilter(");
+ public java.lang.String toString() {
+ java.lang.StringBuilder sb = new java.lang.StringBuilder("LdapFilter(");
boolean first = true;
sb.append("attribute:");
@@ -546,7 +519,7 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
}
}
- private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
+ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException {
try {
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
__isset_bitfield = 0;
@@ -556,13 +529,13 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
}
}
- private static class LdapFilterStandardSchemeFactory implements SchemeFactory {
+ private static class LdapFilterStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory {
public LdapFilterStandardScheme getScheme() {
return new LdapFilterStandardScheme();
}
}
- private static class LdapFilterStandardScheme extends StandardScheme<LdapFilter> {
+ private static class LdapFilterStandardScheme extends org.apache.thrift.scheme.StandardScheme<LdapFilter> {
public void read(org.apache.thrift.protocol.TProtocol iprot, LdapFilter struct) throws org.apache.thrift.TException {
org.apache.thrift.protocol.TField schemeField;
@@ -649,18 +622,18 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
}
- private static class LdapFilterTupleSchemeFactory implements SchemeFactory {
+ private static class LdapFilterTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory {
public LdapFilterTupleScheme getScheme() {
return new LdapFilterTupleScheme();
}
}
- private static class LdapFilterTupleScheme extends TupleScheme<LdapFilter> {
+ private static class LdapFilterTupleScheme extends org.apache.thrift.scheme.TupleScheme<LdapFilter> {
@Override
public void write(org.apache.thrift.protocol.TProtocol prot, LdapFilter struct) throws org.apache.thrift.TException {
- TTupleProtocol oprot = (TTupleProtocol) prot;
- BitSet optionals = new BitSet();
+ org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot;
+ java.util.BitSet optionals = new java.util.BitSet();
if (struct.isSetAttribute()) {
optionals.set(0);
}
@@ -690,8 +663,8 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
@Override
public void read(org.apache.thrift.protocol.TProtocol prot, LdapFilter struct) throws org.apache.thrift.TException {
- TTupleProtocol iprot = (TTupleProtocol) prot;
- BitSet incoming = iprot.readBitSet(4);
+ org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot;
+ java.util.BitSet incoming = iprot.readBitSet(4);
if (incoming.get(0)) {
struct.attribute = iprot.readString();
struct.setAttributeIsSet(true);
@@ -711,5 +684,8 @@ public class LdapFilter implements org.apache.thrift.TBase<LdapFilter, LdapFilte
}
}
+ private static <S extends org.apache.thrift.scheme.IScheme> S scheme(org.apache.thrift.protocol.TProtocol proto) {
+ return (org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme();
+ }
}