summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/bwlp/thrift/iface/ImageBaseWrite.java
diff options
context:
space:
mode:
authorSimon Rettberg2015-06-09 18:57:14 +0200
committerSimon Rettberg2015-06-09 18:57:14 +0200
commitc121d65bb33a42c324b746f6dc5300aee68487dd (patch)
treefd72496dcf56338af387ff0345636e2d77b6ff86 /src/main/java/org/openslx/bwlp/thrift/iface/ImageBaseWrite.java
parentChanges for Dozmod v1.1 (diff)
downloadmaster-sync-shared-c121d65bb33a42c324b746f6dc5300aee68487dd.tar.gz
master-sync-shared-c121d65bb33a42c324b746f6dc5300aee68487dd.tar.xz
master-sync-shared-c121d65bb33a42c324b746f6dc5300aee68487dd.zip
Unified thrift definitions for master and satellite
Diffstat (limited to 'src/main/java/org/openslx/bwlp/thrift/iface/ImageBaseWrite.java')
-rw-r--r--src/main/java/org/openslx/bwlp/thrift/iface/ImageBaseWrite.java1004
1 files changed, 1004 insertions, 0 deletions
diff --git a/src/main/java/org/openslx/bwlp/thrift/iface/ImageBaseWrite.java b/src/main/java/org/openslx/bwlp/thrift/iface/ImageBaseWrite.java
new file mode 100644
index 0000000..0a6c3c4
--- /dev/null
+++ b/src/main/java/org/openslx/bwlp/thrift/iface/ImageBaseWrite.java
@@ -0,0 +1,1004 @@
+/**
+ * Autogenerated by Thrift Compiler (0.9.1)
+ *
+ * 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 org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+public class ImageBaseWrite implements org.apache.thrift.TBase<ImageBaseWrite, ImageBaseWrite._Fields>, java.io.Serializable, Cloneable, Comparable<ImageBaseWrite> {
+ private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("ImageBaseWrite");
+
+ private static final org.apache.thrift.protocol.TField IMAGE_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("imageName", org.apache.thrift.protocol.TType.STRING, (short)1);
+ private static final org.apache.thrift.protocol.TField DESCRIPTION_FIELD_DESC = new org.apache.thrift.protocol.TField("description", org.apache.thrift.protocol.TType.STRING, (short)2);
+ private static final org.apache.thrift.protocol.TField OS_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("osId", org.apache.thrift.protocol.TType.I32, (short)3);
+ private static final org.apache.thrift.protocol.TField IS_TEMPLATE_FIELD_DESC = new org.apache.thrift.protocol.TField("isTemplate", org.apache.thrift.protocol.TType.BOOL, (short)4);
+ private static final org.apache.thrift.protocol.TField DEFAULT_PERMISSIONS_FIELD_DESC = new org.apache.thrift.protocol.TField("defaultPermissions", org.apache.thrift.protocol.TType.STRUCT, (short)5);
+ private static final org.apache.thrift.protocol.TField SHARE_MODE_FIELD_DESC = new org.apache.thrift.protocol.TField("shareMode", org.apache.thrift.protocol.TType.I32, (short)6);
+ private static final org.apache.thrift.protocol.TField OWNER_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("ownerId", org.apache.thrift.protocol.TType.STRING, (short)7);
+
+ private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
+ static {
+ schemes.put(StandardScheme.class, new ImageBaseWriteStandardSchemeFactory());
+ schemes.put(TupleScheme.class, new ImageBaseWriteTupleSchemeFactory());
+ }
+
+ public String imageName; // required
+ public String description; // required
+ public int osId; // required
+ public boolean isTemplate; // required
+ public ImagePermissions defaultPermissions; // required
+ /**
+ *
+ * @see ShareMode
+ */
+ public ShareMode shareMode; // required
+ public String ownerId; // 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 {
+ IMAGE_NAME((short)1, "imageName"),
+ DESCRIPTION((short)2, "description"),
+ OS_ID((short)3, "osId"),
+ IS_TEMPLATE((short)4, "isTemplate"),
+ DEFAULT_PERMISSIONS((short)5, "defaultPermissions"),
+ /**
+ *
+ * @see ShareMode
+ */
+ SHARE_MODE((short)6, "shareMode"),
+ OWNER_ID((short)7, "ownerId");
+
+ private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
+
+ static {
+ for (_Fields field : EnumSet.allOf(_Fields.class)) {
+ byName.put(field.getFieldName(), field);
+ }
+ }
+
+ /**
+ * Find the _Fields constant that matches fieldId, or null if its not found.
+ */
+ public static _Fields findByThriftId(int fieldId) {
+ switch(fieldId) {
+ case 1: // IMAGE_NAME
+ return IMAGE_NAME;
+ case 2: // DESCRIPTION
+ return DESCRIPTION;
+ case 3: // OS_ID
+ return OS_ID;
+ case 4: // IS_TEMPLATE
+ return IS_TEMPLATE;
+ case 5: // DEFAULT_PERMISSIONS
+ return DEFAULT_PERMISSIONS;
+ case 6: // SHARE_MODE
+ return SHARE_MODE;
+ case 7: // OWNER_ID
+ return OWNER_ID;
+ default:
+ return null;
+ }
+ }
+
+ /**
+ * Find the _Fields constant that matches fieldId, throwing an exception
+ * if it is not found.
+ */
+ public static _Fields findByThriftIdOrThrow(int fieldId) {
+ _Fields fields = findByThriftId(fieldId);
+ if (fields == null) throw new 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) {
+ return byName.get(name);
+ }
+
+ private final short _thriftId;
+ private final String _fieldName;
+
+ _Fields(short thriftId, String fieldName) {
+ _thriftId = thriftId;
+ _fieldName = fieldName;
+ }
+
+ public short getThriftFieldId() {
+ return _thriftId;
+ }
+
+ public String getFieldName() {
+ return _fieldName;
+ }
+ }
+
+ // isset id assignments
+ private static final int __OSID_ISSET_ID = 0;
+ private static final int __ISTEMPLATE_ISSET_ID = 1;
+ private byte __isset_bitfield = 0;
+ private _Fields optionals[] = {_Fields.OWNER_ID};
+ 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);
+ tmpMap.put(_Fields.IMAGE_NAME, new org.apache.thrift.meta_data.FieldMetaData("imageName", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
+ tmpMap.put(_Fields.DESCRIPTION, new org.apache.thrift.meta_data.FieldMetaData("description", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
+ tmpMap.put(_Fields.OS_ID, new org.apache.thrift.meta_data.FieldMetaData("osId", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I32)));
+ tmpMap.put(_Fields.IS_TEMPLATE, new org.apache.thrift.meta_data.FieldMetaData("isTemplate", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL)));
+ tmpMap.put(_Fields.DEFAULT_PERMISSIONS, new org.apache.thrift.meta_data.FieldMetaData("defaultPermissions", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, ImagePermissions.class)));
+ tmpMap.put(_Fields.SHARE_MODE, new org.apache.thrift.meta_data.FieldMetaData("shareMode", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.EnumMetaData(org.apache.thrift.protocol.TType.ENUM, ShareMode.class)));
+ tmpMap.put(_Fields.OWNER_ID, new org.apache.thrift.meta_data.FieldMetaData("ownerId", org.apache.thrift.TFieldRequirementType.OPTIONAL,
+ new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "UUID")));
+ metaDataMap = Collections.unmodifiableMap(tmpMap);
+ org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(ImageBaseWrite.class, metaDataMap);
+ }
+
+ public ImageBaseWrite() {
+ }
+
+ public ImageBaseWrite(
+ String imageName,
+ String description,
+ int osId,
+ boolean isTemplate,
+ ImagePermissions defaultPermissions,
+ ShareMode shareMode)
+ {
+ this();
+ this.imageName = imageName;
+ this.description = description;
+ this.osId = osId;
+ setOsIdIsSet(true);
+ this.isTemplate = isTemplate;
+ setIsTemplateIsSet(true);
+ this.defaultPermissions = defaultPermissions;
+ this.shareMode = shareMode;
+ }
+
+ /**
+ * Performs a deep copy on <i>other</i>.
+ */
+ public ImageBaseWrite(ImageBaseWrite other) {
+ __isset_bitfield = other.__isset_bitfield;
+ if (other.isSetImageName()) {
+ this.imageName = other.imageName;
+ }
+ if (other.isSetDescription()) {
+ this.description = other.description;
+ }
+ this.osId = other.osId;
+ this.isTemplate = other.isTemplate;
+ if (other.isSetDefaultPermissions()) {
+ this.defaultPermissions = new ImagePermissions(other.defaultPermissions);
+ }
+ if (other.isSetShareMode()) {
+ this.shareMode = other.shareMode;
+ }
+ if (other.isSetOwnerId()) {
+ this.ownerId = other.ownerId;
+ }
+ }
+
+ public ImageBaseWrite deepCopy() {
+ return new ImageBaseWrite(this);
+ }
+
+ @Override
+ public void clear() {
+ this.imageName = null;
+ this.description = null;
+ setOsIdIsSet(false);
+ this.osId = 0;
+ setIsTemplateIsSet(false);
+ this.isTemplate = false;
+ this.defaultPermissions = null;
+ this.shareMode = null;
+ this.ownerId = null;
+ }
+
+ public String getImageName() {
+ return this.imageName;
+ }
+
+ public ImageBaseWrite setImageName(String imageName) {
+ this.imageName = imageName;
+ return this;
+ }
+
+ public void unsetImageName() {
+ this.imageName = null;
+ }
+
+ /** Returns true if field imageName is set (has been assigned a value) and false otherwise */
+ public boolean isSetImageName() {
+ return this.imageName != null;
+ }
+
+ public void setImageNameIsSet(boolean value) {
+ if (!value) {
+ this.imageName = null;
+ }
+ }
+
+ public String getDescription() {
+ return this.description;
+ }
+
+ public ImageBaseWrite setDescription(String description) {
+ this.description = description;
+ return this;
+ }
+
+ public void unsetDescription() {
+ this.description = null;
+ }
+
+ /** Returns true if field description is set (has been assigned a value) and false otherwise */
+ public boolean isSetDescription() {
+ return this.description != null;
+ }
+
+ public void setDescriptionIsSet(boolean value) {
+ if (!value) {
+ this.description = null;
+ }
+ }
+
+ public int getOsId() {
+ return this.osId;
+ }
+
+ public ImageBaseWrite setOsId(int osId) {
+ this.osId = osId;
+ setOsIdIsSet(true);
+ return this;
+ }
+
+ public void unsetOsId() {
+ __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __OSID_ISSET_ID);
+ }
+
+ /** Returns true if field osId is set (has been assigned a value) and false otherwise */
+ public boolean isSetOsId() {
+ return EncodingUtils.testBit(__isset_bitfield, __OSID_ISSET_ID);
+ }
+
+ public void setOsIdIsSet(boolean value) {
+ __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __OSID_ISSET_ID, value);
+ }
+
+ public boolean isIsTemplate() {
+ return this.isTemplate;
+ }
+
+ public ImageBaseWrite setIsTemplate(boolean isTemplate) {
+ this.isTemplate = isTemplate;
+ setIsTemplateIsSet(true);
+ return this;
+ }
+
+ public void unsetIsTemplate() {
+ __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __ISTEMPLATE_ISSET_ID);
+ }
+
+ /** Returns true if field isTemplate is set (has been assigned a value) and false otherwise */
+ public boolean isSetIsTemplate() {
+ return EncodingUtils.testBit(__isset_bitfield, __ISTEMPLATE_ISSET_ID);
+ }
+
+ public void setIsTemplateIsSet(boolean value) {
+ __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __ISTEMPLATE_ISSET_ID, value);
+ }
+
+ public ImagePermissions getDefaultPermissions() {
+ return this.defaultPermissions;
+ }
+
+ public ImageBaseWrite setDefaultPermissions(ImagePermissions defaultPermissions) {
+ this.defaultPermissions = defaultPermissions;
+ return this;
+ }
+
+ public void unsetDefaultPermissions() {
+ this.defaultPermissions = null;
+ }
+
+ /** Returns true if field defaultPermissions is set (has been assigned a value) and false otherwise */
+ public boolean isSetDefaultPermissions() {
+ return this.defaultPermissions != null;
+ }
+
+ public void setDefaultPermissionsIsSet(boolean value) {
+ if (!value) {
+ this.defaultPermissions = null;
+ }
+ }
+
+ /**
+ *
+ * @see ShareMode
+ */
+ public ShareMode getShareMode() {
+ return this.shareMode;
+ }
+
+ /**
+ *
+ * @see ShareMode
+ */
+ public ImageBaseWrite setShareMode(ShareMode shareMode) {
+ this.shareMode = shareMode;
+ return this;
+ }
+
+ public void unsetShareMode() {
+ this.shareMode = null;
+ }
+
+ /** Returns true if field shareMode is set (has been assigned a value) and false otherwise */
+ public boolean isSetShareMode() {
+ return this.shareMode != null;
+ }
+
+ public void setShareModeIsSet(boolean value) {
+ if (!value) {
+ this.shareMode = null;
+ }
+ }
+
+ public String getOwnerId() {
+ return this.ownerId;
+ }
+
+ public ImageBaseWrite setOwnerId(String ownerId) {
+ this.ownerId = ownerId;
+ return this;
+ }
+
+ public void unsetOwnerId() {
+ this.ownerId = null;
+ }
+
+ /** Returns true if field ownerId is set (has been assigned a value) and false otherwise */
+ public boolean isSetOwnerId() {
+ return this.ownerId != null;
+ }
+
+ public void setOwnerIdIsSet(boolean value) {
+ if (!value) {
+ this.ownerId = null;
+ }
+ }
+
+ public void setFieldValue(_Fields field, Object value) {
+ switch (field) {
+ case IMAGE_NAME:
+ if (value == null) {
+ unsetImageName();
+ } else {
+ setImageName((String)value);
+ }
+ break;
+
+ case DESCRIPTION:
+ if (value == null) {
+ unsetDescription();
+ } else {
+ setDescription((String)value);
+ }
+ break;
+
+ case OS_ID:
+ if (value == null) {
+ unsetOsId();
+ } else {
+ setOsId((Integer)value);
+ }
+ break;
+
+ case IS_TEMPLATE:
+ if (value == null) {
+ unsetIsTemplate();
+ } else {
+ setIsTemplate((Boolean)value);
+ }
+ break;
+
+ case DEFAULT_PERMISSIONS:
+ if (value == null) {
+ unsetDefaultPermissions();
+ } else {
+ setDefaultPermissions((ImagePermissions)value);
+ }
+ break;
+
+ case SHARE_MODE:
+ if (value == null) {
+ unsetShareMode();
+ } else {
+ setShareMode((ShareMode)value);
+ }
+ break;
+
+ case OWNER_ID:
+ if (value == null) {
+ unsetOwnerId();
+ } else {
+ setOwnerId((String)value);
+ }
+ break;
+
+ }
+ }
+
+ public Object getFieldValue(_Fields field) {
+ switch (field) {
+ case IMAGE_NAME:
+ return getImageName();
+
+ case DESCRIPTION:
+ return getDescription();
+
+ case OS_ID:
+ return Integer.valueOf(getOsId());
+
+ case IS_TEMPLATE:
+ return Boolean.valueOf(isIsTemplate());
+
+ case DEFAULT_PERMISSIONS:
+ return getDefaultPermissions();
+
+ case SHARE_MODE:
+ return getShareMode();
+
+ case OWNER_ID:
+ return getOwnerId();
+
+ }
+ throw new 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();
+ }
+
+ switch (field) {
+ case IMAGE_NAME:
+ return isSetImageName();
+ case DESCRIPTION:
+ return isSetDescription();
+ case OS_ID:
+ return isSetOsId();
+ case IS_TEMPLATE:
+ return isSetIsTemplate();
+ case DEFAULT_PERMISSIONS:
+ return isSetDefaultPermissions();
+ case SHARE_MODE:
+ return isSetShareMode();
+ case OWNER_ID:
+ return isSetOwnerId();
+ }
+ throw new IllegalStateException();
+ }
+
+ @Override
+ public boolean equals(Object that) {
+ if (that == null)
+ return false;
+ if (that instanceof ImageBaseWrite)
+ return this.equals((ImageBaseWrite)that);
+ return false;
+ }
+
+ public boolean equals(ImageBaseWrite that) {
+ if (that == null)
+ return false;
+
+ boolean this_present_imageName = true && this.isSetImageName();
+ boolean that_present_imageName = true && that.isSetImageName();
+ if (this_present_imageName || that_present_imageName) {
+ if (!(this_present_imageName && that_present_imageName))
+ return false;
+ if (!this.imageName.equals(that.imageName))
+ return false;
+ }
+
+ boolean this_present_description = true && this.isSetDescription();
+ boolean that_present_description = true && that.isSetDescription();
+ if (this_present_description || that_present_description) {
+ if (!(this_present_description && that_present_description))
+ return false;
+ if (!this.description.equals(that.description))
+ return false;
+ }
+
+ boolean this_present_osId = true;
+ boolean that_present_osId = true;
+ if (this_present_osId || that_present_osId) {
+ if (!(this_present_osId && that_present_osId))
+ return false;
+ if (this.osId != that.osId)
+ return false;
+ }
+
+ boolean this_present_isTemplate = true;
+ boolean that_present_isTemplate = true;
+ if (this_present_isTemplate || that_present_isTemplate) {
+ if (!(this_present_isTemplate && that_present_isTemplate))
+ return false;
+ if (this.isTemplate != that.isTemplate)
+ return false;
+ }
+
+ boolean this_present_defaultPermissions = true && this.isSetDefaultPermissions();
+ boolean that_present_defaultPermissions = true && that.isSetDefaultPermissions();
+ if (this_present_defaultPermissions || that_present_defaultPermissions) {
+ if (!(this_present_defaultPermissions && that_present_defaultPermissions))
+ return false;
+ if (!this.defaultPermissions.equals(that.defaultPermissions))
+ return false;
+ }
+
+ boolean this_present_shareMode = true && this.isSetShareMode();
+ boolean that_present_shareMode = true && that.isSetShareMode();
+ if (this_present_shareMode || that_present_shareMode) {
+ if (!(this_present_shareMode && that_present_shareMode))
+ return false;
+ if (!this.shareMode.equals(that.shareMode))
+ return false;
+ }
+
+ boolean this_present_ownerId = true && this.isSetOwnerId();
+ boolean that_present_ownerId = true && that.isSetOwnerId();
+ if (this_present_ownerId || that_present_ownerId) {
+ if (!(this_present_ownerId && that_present_ownerId))
+ return false;
+ if (!this.ownerId.equals(that.ownerId))
+ return false;
+ }
+
+ return true;
+ }
+
+ @Override
+ public int hashCode() {
+ return 0;
+ }
+
+ @Override
+ public int compareTo(ImageBaseWrite other) {
+ if (!getClass().equals(other.getClass())) {
+ return getClass().getName().compareTo(other.getClass().getName());
+ }
+
+ int lastComparison = 0;
+
+ lastComparison = Boolean.valueOf(isSetImageName()).compareTo(other.isSetImageName());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetImageName()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.imageName, other.imageName);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
+ lastComparison = Boolean.valueOf(isSetDescription()).compareTo(other.isSetDescription());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetDescription()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.description, other.description);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
+ lastComparison = Boolean.valueOf(isSetOsId()).compareTo(other.isSetOsId());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetOsId()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.osId, other.osId);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
+ lastComparison = Boolean.valueOf(isSetIsTemplate()).compareTo(other.isSetIsTemplate());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetIsTemplate()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.isTemplate, other.isTemplate);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
+ lastComparison = Boolean.valueOf(isSetDefaultPermissions()).compareTo(other.isSetDefaultPermissions());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetDefaultPermissions()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.defaultPermissions, other.defaultPermissions);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
+ lastComparison = Boolean.valueOf(isSetShareMode()).compareTo(other.isSetShareMode());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetShareMode()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.shareMode, other.shareMode);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
+ lastComparison = Boolean.valueOf(isSetOwnerId()).compareTo(other.isSetOwnerId());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetOwnerId()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ownerId, other.ownerId);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
+ return 0;
+ }
+
+ 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);
+ }
+
+ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
+ schemes.get(oprot.getScheme()).getScheme().write(oprot, this);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder("ImageBaseWrite(");
+ boolean first = true;
+
+ sb.append("imageName:");
+ if (this.imageName == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.imageName);
+ }
+ first = false;
+ if (!first) sb.append(", ");
+ sb.append("description:");
+ if (this.description == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.description);
+ }
+ first = false;
+ if (!first) sb.append(", ");
+ sb.append("osId:");
+ sb.append(this.osId);
+ first = false;
+ if (!first) sb.append(", ");
+ sb.append("isTemplate:");
+ sb.append(this.isTemplate);
+ first = false;
+ if (!first) sb.append(", ");
+ sb.append("defaultPermissions:");
+ if (this.defaultPermissions == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.defaultPermissions);
+ }
+ first = false;
+ if (!first) sb.append(", ");
+ sb.append("shareMode:");
+ if (this.shareMode == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.shareMode);
+ }
+ first = false;
+ if (isSetOwnerId()) {
+ if (!first) sb.append(", ");
+ sb.append("ownerId:");
+ if (this.ownerId == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.ownerId);
+ }
+ first = false;
+ }
+ sb.append(")");
+ return sb.toString();
+ }
+
+ public void validate() throws org.apache.thrift.TException {
+ // check for required fields
+ // check for sub-struct validity
+ if (defaultPermissions != null) {
+ defaultPermissions.validate();
+ }
+ }
+
+ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
+ try {
+ write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out)));
+ } catch (org.apache.thrift.TException te) {
+ throw new java.io.IOException(te);
+ }
+ }
+
+ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, 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;
+ read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
+ } catch (org.apache.thrift.TException te) {
+ throw new java.io.IOException(te);
+ }
+ }
+
+ private static class ImageBaseWriteStandardSchemeFactory implements SchemeFactory {
+ public ImageBaseWriteStandardScheme getScheme() {
+ return new ImageBaseWriteStandardScheme();
+ }
+ }
+
+ private static class ImageBaseWriteStandardScheme extends StandardScheme<ImageBaseWrite> {
+
+ public void read(org.apache.thrift.protocol.TProtocol iprot, ImageBaseWrite struct) throws org.apache.thrift.TException {
+ org.apache.thrift.protocol.TField schemeField;
+ iprot.readStructBegin();
+ while (true)
+ {
+ schemeField = iprot.readFieldBegin();
+ if (schemeField.type == org.apache.thrift.protocol.TType.STOP) {
+ break;
+ }
+ switch (schemeField.id) {
+ case 1: // IMAGE_NAME
+ if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
+ struct.imageName = iprot.readString();
+ struct.setImageNameIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ case 2: // DESCRIPTION
+ if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
+ struct.description = iprot.readString();
+ struct.setDescriptionIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ case 3: // OS_ID
+ if (schemeField.type == org.apache.thrift.protocol.TType.I32) {
+ struct.osId = iprot.readI32();
+ struct.setOsIdIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ case 4: // IS_TEMPLATE
+ if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) {
+ struct.isTemplate = iprot.readBool();
+ struct.setIsTemplateIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ case 5: // DEFAULT_PERMISSIONS
+ if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
+ struct.defaultPermissions = new ImagePermissions();
+ struct.defaultPermissions.read(iprot);
+ struct.setDefaultPermissionsIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ case 6: // SHARE_MODE
+ if (schemeField.type == org.apache.thrift.protocol.TType.I32) {
+ struct.shareMode = ShareMode.findByValue(iprot.readI32());
+ struct.setShareModeIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ case 7: // OWNER_ID
+ if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
+ struct.ownerId = iprot.readString();
+ struct.setOwnerIdIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ default:
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ iprot.readFieldEnd();
+ }
+ iprot.readStructEnd();
+
+ // check for required fields of primitive type, which can't be checked in the validate method
+ struct.validate();
+ }
+
+ public void write(org.apache.thrift.protocol.TProtocol oprot, ImageBaseWrite struct) throws org.apache.thrift.TException {
+ struct.validate();
+
+ oprot.writeStructBegin(STRUCT_DESC);
+ if (struct.imageName != null) {
+ oprot.writeFieldBegin(IMAGE_NAME_FIELD_DESC);
+ oprot.writeString(struct.imageName);
+ oprot.writeFieldEnd();
+ }
+ if (struct.description != null) {
+ oprot.writeFieldBegin(DESCRIPTION_FIELD_DESC);
+ oprot.writeString(struct.description);
+ oprot.writeFieldEnd();
+ }
+ oprot.writeFieldBegin(OS_ID_FIELD_DESC);
+ oprot.writeI32(struct.osId);
+ oprot.writeFieldEnd();
+ oprot.writeFieldBegin(IS_TEMPLATE_FIELD_DESC);
+ oprot.writeBool(struct.isTemplate);
+ oprot.writeFieldEnd();
+ if (struct.defaultPermissions != null) {
+ oprot.writeFieldBegin(DEFAULT_PERMISSIONS_FIELD_DESC);
+ struct.defaultPermissions.write(oprot);
+ oprot.writeFieldEnd();
+ }
+ if (struct.shareMode != null) {
+ oprot.writeFieldBegin(SHARE_MODE_FIELD_DESC);
+ oprot.writeI32(struct.shareMode.getValue());
+ oprot.writeFieldEnd();
+ }
+ if (struct.ownerId != null) {
+ if (struct.isSetOwnerId()) {
+ oprot.writeFieldBegin(OWNER_ID_FIELD_DESC);
+ oprot.writeString(struct.ownerId);
+ oprot.writeFieldEnd();
+ }
+ }
+ oprot.writeFieldStop();
+ oprot.writeStructEnd();
+ }
+
+ }
+
+ private static class ImageBaseWriteTupleSchemeFactory implements SchemeFactory {
+ public ImageBaseWriteTupleScheme getScheme() {
+ return new ImageBaseWriteTupleScheme();
+ }
+ }
+
+ private static class ImageBaseWriteTupleScheme extends TupleScheme<ImageBaseWrite> {
+
+ @Override
+ public void write(org.apache.thrift.protocol.TProtocol prot, ImageBaseWrite struct) throws org.apache.thrift.TException {
+ TTupleProtocol oprot = (TTupleProtocol) prot;
+ BitSet optionals = new BitSet();
+ if (struct.isSetImageName()) {
+ optionals.set(0);
+ }
+ if (struct.isSetDescription()) {
+ optionals.set(1);
+ }
+ if (struct.isSetOsId()) {
+ optionals.set(2);
+ }
+ if (struct.isSetIsTemplate()) {
+ optionals.set(3);
+ }
+ if (struct.isSetDefaultPermissions()) {
+ optionals.set(4);
+ }
+ if (struct.isSetShareMode()) {
+ optionals.set(5);
+ }
+ if (struct.isSetOwnerId()) {
+ optionals.set(6);
+ }
+ oprot.writeBitSet(optionals, 7);
+ if (struct.isSetImageName()) {
+ oprot.writeString(struct.imageName);
+ }
+ if (struct.isSetDescription()) {
+ oprot.writeString(struct.description);
+ }
+ if (struct.isSetOsId()) {
+ oprot.writeI32(struct.osId);
+ }
+ if (struct.isSetIsTemplate()) {
+ oprot.writeBool(struct.isTemplate);
+ }
+ if (struct.isSetDefaultPermissions()) {
+ struct.defaultPermissions.write(oprot);
+ }
+ if (struct.isSetShareMode()) {
+ oprot.writeI32(struct.shareMode.getValue());
+ }
+ if (struct.isSetOwnerId()) {
+ oprot.writeString(struct.ownerId);
+ }
+ }
+
+ @Override
+ public void read(org.apache.thrift.protocol.TProtocol prot, ImageBaseWrite struct) throws org.apache.thrift.TException {
+ TTupleProtocol iprot = (TTupleProtocol) prot;
+ BitSet incoming = iprot.readBitSet(7);
+ if (incoming.get(0)) {
+ struct.imageName = iprot.readString();
+ struct.setImageNameIsSet(true);
+ }
+ if (incoming.get(1)) {
+ struct.description = iprot.readString();
+ struct.setDescriptionIsSet(true);
+ }
+ if (incoming.get(2)) {
+ struct.osId = iprot.readI32();
+ struct.setOsIdIsSet(true);
+ }
+ if (incoming.get(3)) {
+ struct.isTemplate = iprot.readBool();
+ struct.setIsTemplateIsSet(true);
+ }
+ if (incoming.get(4)) {
+ struct.defaultPermissions = new ImagePermissions();
+ struct.defaultPermissions.read(iprot);
+ struct.setDefaultPermissionsIsSet(true);
+ }
+ if (incoming.get(5)) {
+ struct.shareMode = ShareMode.findByValue(iprot.readI32());
+ struct.setShareModeIsSet(true);
+ }
+ if (incoming.get(6)) {
+ struct.ownerId = iprot.readString();
+ struct.setOwnerIdIsSet(true);
+ }
+ }
+ }
+
+}
+