summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/bwlp/thrift/iface/MasterSoftware.java
diff options
context:
space:
mode:
authorJonathan Bauer2016-01-07 13:55:40 +0100
committerJonathan Bauer2016-01-07 13:55:40 +0100
commit5ba446543184d5af8185da23b9a5fd28133d5513 (patch)
tree5f0dc18ddee5ee2370f6c0226e5337987d393428 /src/main/java/org/openslx/bwlp/thrift/iface/MasterSoftware.java
parent[thrift] added generated Location class (diff)
downloadmaster-sync-shared-5ba446543184d5af8185da23b9a5fd28133d5513.tar.gz
master-sync-shared-5ba446543184d5af8185da23b9a5fd28133d5513.tar.xz
master-sync-shared-5ba446543184d5af8185da23b9a5fd28133d5513.zip
added "onlyInLocations" flag for LectureWrite
update thrift files to 0.9.3
Diffstat (limited to 'src/main/java/org/openslx/bwlp/thrift/iface/MasterSoftware.java')
-rw-r--r--src/main/java/org/openslx/bwlp/thrift/iface/MasterSoftware.java28
1 files changed, 24 insertions, 4 deletions
diff --git a/src/main/java/org/openslx/bwlp/thrift/iface/MasterSoftware.java b/src/main/java/org/openslx/bwlp/thrift/iface/MasterSoftware.java
index f18183d..8eb8c49 100644
--- a/src/main/java/org/openslx/bwlp/thrift/iface/MasterSoftware.java
+++ b/src/main/java/org/openslx/bwlp/thrift/iface/MasterSoftware.java
@@ -1,5 +1,5 @@
/**
- * Autogenerated by Thrift Compiler (0.9.1)
+ * Autogenerated by Thrift Compiler (0.9.3)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
@@ -29,9 +29,12 @@ 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 = "2016-01-04")
public class MasterSoftware implements org.apache.thrift.TBase<MasterSoftware, MasterSoftware._Fields>, java.io.Serializable, Cloneable, Comparable<MasterSoftware> {
private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("MasterSoftware");
@@ -276,10 +279,10 @@ public class MasterSoftware implements org.apache.thrift.TBase<MasterSoftware, M
return getSoftware();
case IS_RESTRICTED:
- return Boolean.valueOf(isIsRestricted());
+ return isIsRestricted();
case CREATE_TIME:
- return Long.valueOf(getCreateTime());
+ return getCreateTime();
}
throw new IllegalStateException();
@@ -347,7 +350,24 @@ public class MasterSoftware implements org.apache.thrift.TBase<MasterSoftware, M
@Override
public int hashCode() {
- return 0;
+ List<Object> list = new ArrayList<Object>();
+
+ boolean present_software = true && (isSetSoftware());
+ list.add(present_software);
+ if (present_software)
+ list.add(software);
+
+ boolean present_isRestricted = true;
+ list.add(present_isRestricted);
+ if (present_isRestricted)
+ list.add(isRestricted);
+
+ boolean present_createTime = true;
+ list.add(present_createTime);
+ if (present_createTime)
+ list.add(createTime);
+
+ return list.hashCode();
}
@Override