From 9871e4931e7fbf5c58d0c66fa836589ff7613e92 Mon Sep 17 00:00:00 2001 From: Simon Rettberg Date: Thu, 3 Nov 2022 14:37:32 +0100 Subject: [thrift] Add vmSizeLimit to satellite config --- .../openslx/bwlp/thrift/iface/SatelliteServer.java | 1977 +++++++++++++++++++- 1 file changed, 1899 insertions(+), 78 deletions(-) (limited to 'src/main/java/org/openslx/bwlp/thrift/iface/SatelliteServer.java') diff --git a/src/main/java/org/openslx/bwlp/thrift/iface/SatelliteServer.java b/src/main/java/org/openslx/bwlp/thrift/iface/SatelliteServer.java index c81df2c..30ab7c6 100644 --- a/src/main/java/org/openslx/bwlp/thrift/iface/SatelliteServer.java +++ b/src/main/java/org/openslx/bwlp/thrift/iface/SatelliteServer.java @@ -1,13 +1,13 @@ /** - * Autogenerated by Thrift Compiler (0.15.0) + * Autogenerated by Thrift Compiler (0.17.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package org.openslx.bwlp.thrift.iface; +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.17.0)", date = "2022-11-03") @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.15.0)", date = "2021-12-17") public class SatelliteServer { public interface Iface { @@ -201,9 +201,11 @@ public class SatelliteServer { public static class Client extends org.apache.thrift.TServiceClient implements Iface { public static class Factory implements org.apache.thrift.TServiceClientFactory { public Factory() {} + @Override public Client getClient(org.apache.thrift.protocol.TProtocol prot) { return new Client(prot); } + @Override public Client getClient(org.apache.thrift.protocol.TProtocol iprot, org.apache.thrift.protocol.TProtocol oprot) { return new Client(iprot, oprot); } @@ -218,6 +220,7 @@ public class SatelliteServer { super(iprot, oprot); } + @Override public long getVersion(long clientVersion) throws org.apache.thrift.TException { send_getVersion(clientVersion); @@ -241,6 +244,7 @@ public class SatelliteServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getVersion failed: unknown result"); } + @Override public java.lang.String getSupportedFeatures() throws org.apache.thrift.TException { send_getSupportedFeatures(); @@ -263,6 +267,7 @@ public class SatelliteServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getSupportedFeatures failed: unknown result"); } + @Override public SatelliteConfig getConfiguration() throws org.apache.thrift.TException { send_getConfiguration(); @@ -285,6 +290,7 @@ public class SatelliteServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getConfiguration failed: unknown result"); } + @Override public TransferInformation requestImageVersionUpload(java.lang.String userToken, java.lang.String imageBaseId, long fileSize, java.util.List blockHashes, java.nio.ByteBuffer machineDescription) throws TTransferRejectedException, TAuthorizationException, TInvocationException, TNotFoundException, org.apache.thrift.TException { send_requestImageVersionUpload(userToken, imageBaseId, fileSize, blockHashes, machineDescription); @@ -324,6 +330,7 @@ public class SatelliteServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "requestImageVersionUpload failed: unknown result"); } + @Override public void updateBlockHashes(java.lang.String uploadToken, java.util.List blockHashes, java.lang.String userToken) throws TInvalidTokenException, org.apache.thrift.TException { send_updateBlockHashes(uploadToken, blockHashes, userToken); @@ -349,6 +356,7 @@ public class SatelliteServer { return; } + @Override public UploadOptions setUploadOptions(java.lang.String userToken, java.lang.String uploadToken, UploadOptions options) throws TAuthorizationException, TInvalidTokenException, org.apache.thrift.TException { send_setUploadOptions(userToken, uploadToken, options); @@ -380,6 +388,7 @@ public class SatelliteServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "setUploadOptions failed: unknown result"); } + @Override public void cancelUpload(java.lang.String uploadToken) throws TInvalidTokenException, org.apache.thrift.TException { send_cancelUpload(uploadToken); @@ -403,6 +412,7 @@ public class SatelliteServer { return; } + @Override public TransferStatus queryUploadStatus(java.lang.String uploadToken) throws TInvalidTokenException, org.apache.thrift.TException { send_queryUploadStatus(uploadToken); @@ -429,6 +439,7 @@ public class SatelliteServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "queryUploadStatus failed: unknown result"); } + @Override public TransferInformation requestDownload(java.lang.String userToken, java.lang.String imageVersionId) throws TTransferRejectedException, TAuthorizationException, TInvocationException, TNotFoundException, org.apache.thrift.TException { send_requestDownload(userToken, imageVersionId); @@ -465,6 +476,7 @@ public class SatelliteServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "requestDownload failed: unknown result"); } + @Override public void cancelDownload(java.lang.String downloadToken) throws TInvalidTokenException, org.apache.thrift.TException { send_cancelDownload(downloadToken); @@ -488,6 +500,7 @@ public class SatelliteServer { return; } + @Override public void isAuthenticated(java.lang.String userToken) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException { send_isAuthenticated(userToken); @@ -514,6 +527,7 @@ public class SatelliteServer { return; } + @Override public WhoamiInfo whoami(java.lang.String userToken) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException { send_whoami(userToken); @@ -543,6 +557,7 @@ public class SatelliteServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "whoami failed: unknown result"); } + @Override public void invalidateSession(java.lang.String userToken) throws TInvalidTokenException, org.apache.thrift.TException { send_invalidateSession(userToken); @@ -566,6 +581,7 @@ public class SatelliteServer { return; } + @Override public java.util.List getUserList(java.lang.String userToken, int page) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException { send_getUserList(userToken, page); @@ -596,6 +612,7 @@ public class SatelliteServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getUserList failed: unknown result"); } + @Override public SatelliteUserConfig getUserConfig(java.lang.String userToken) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException { send_getUserConfig(userToken); @@ -625,6 +642,7 @@ public class SatelliteServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getUserConfig failed: unknown result"); } + @Override public void setUserConfig(java.lang.String userToken, SatelliteUserConfig config) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException { send_setUserConfig(userToken, config); @@ -652,6 +670,7 @@ public class SatelliteServer { return; } + @Override public java.util.List getOperatingSystems() throws org.apache.thrift.TException { send_getOperatingSystems(); @@ -674,6 +693,7 @@ public class SatelliteServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getOperatingSystems failed: unknown result"); } + @Override public java.util.List getVirtualizers() throws org.apache.thrift.TException { send_getVirtualizers(); @@ -696,6 +716,7 @@ public class SatelliteServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getVirtualizers failed: unknown result"); } + @Override public java.util.List getAllOrganizations() throws org.apache.thrift.TException { send_getAllOrganizations(); @@ -718,6 +739,7 @@ public class SatelliteServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getAllOrganizations failed: unknown result"); } + @Override public java.util.List getLocations() throws org.apache.thrift.TException { send_getLocations(); @@ -740,6 +762,7 @@ public class SatelliteServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getLocations failed: unknown result"); } + @Override public SatelliteStatus getStatus() throws org.apache.thrift.TException { send_getStatus(); @@ -762,6 +785,7 @@ public class SatelliteServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getStatus failed: unknown result"); } + @Override public java.util.List getImageList(java.lang.String userToken, java.util.List tagSearch, int page) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException { send_getImageList(userToken, tagSearch, page); @@ -793,6 +817,7 @@ public class SatelliteServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getImageList failed: unknown result"); } + @Override public ImageDetailsRead getImageDetails(java.lang.String userToken, java.lang.String imageBaseId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { send_getImageDetails(userToken, imageBaseId); @@ -826,6 +851,7 @@ public class SatelliteServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getImageDetails failed: unknown result"); } + @Override public java.lang.String createImage(java.lang.String userToken, java.lang.String imageName) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException { send_createImage(userToken, imageName); @@ -856,6 +882,7 @@ public class SatelliteServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "createImage failed: unknown result"); } + @Override public void updateImageBase(java.lang.String userToken, java.lang.String imageBaseId, ImageBaseWrite image) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { send_updateImageBase(userToken, imageBaseId, image); @@ -887,6 +914,7 @@ public class SatelliteServer { return; } + @Override public void updateImageVersion(java.lang.String userToken, java.lang.String imageVersionId, ImageVersionWrite image) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { send_updateImageVersion(userToken, imageVersionId, image); @@ -918,6 +946,7 @@ public class SatelliteServer { return; } + @Override public void deleteImageVersion(java.lang.String userToken, java.lang.String imageVersionId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { send_deleteImageVersion(userToken, imageVersionId); @@ -948,6 +977,7 @@ public class SatelliteServer { return; } + @Override public void deleteImageBase(java.lang.String userToken, java.lang.String imageBaseId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { send_deleteImageBase(userToken, imageBaseId); @@ -978,6 +1008,7 @@ public class SatelliteServer { return; } + @Override public void writeImagePermissions(java.lang.String userToken, java.lang.String imageBaseId, java.util.Map permissions) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { send_writeImagePermissions(userToken, imageBaseId, permissions); @@ -1009,6 +1040,7 @@ public class SatelliteServer { return; } + @Override public java.util.Map getImagePermissions(java.lang.String userToken, java.lang.String imageBaseId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { send_getImagePermissions(userToken, imageBaseId); @@ -1042,6 +1074,7 @@ public class SatelliteServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getImagePermissions failed: unknown result"); } + @Override public void setImageOwner(java.lang.String userToken, java.lang.String imageBaseId, java.lang.String newOwnerId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { send_setImageOwner(userToken, imageBaseId, newOwnerId); @@ -1073,6 +1106,7 @@ public class SatelliteServer { return; } + @Override public void setImageVersionExpiry(java.lang.String userToken, java.lang.String imageBaseId, long expireTime) throws TAuthorizationException, TNotFoundException, TInvocationException, TInvalidDateParam, org.apache.thrift.TException { send_setImageVersionExpiry(userToken, imageBaseId, expireTime); @@ -1107,6 +1141,7 @@ public class SatelliteServer { return; } + @Override public java.nio.ByteBuffer getImageVersionVirtConfig(java.lang.String userToken, java.lang.String imageVersionId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { send_getImageVersionVirtConfig(userToken, imageVersionId); @@ -1140,6 +1175,7 @@ public class SatelliteServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getImageVersionVirtConfig failed: unknown result"); } + @Override public void setImageVersionVirtConfig(java.lang.String userToken, java.lang.String imageVersionId, java.nio.ByteBuffer meta) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { send_setImageVersionVirtConfig(userToken, imageVersionId, meta); @@ -1171,6 +1207,7 @@ public class SatelliteServer { return; } + @Override public java.lang.String requestImageReplication(java.lang.String userToken, java.lang.String imageVersionId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { send_requestImageReplication(userToken, imageVersionId); @@ -1204,6 +1241,7 @@ public class SatelliteServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "requestImageReplication failed: unknown result"); } + @Override public java.lang.String publishImageVersion(java.lang.String userToken, java.lang.String imageVersionId) throws TAuthorizationException, TNotFoundException, TInvocationException, TTransferRejectedException, org.apache.thrift.TException { send_publishImageVersion(userToken, imageVersionId); @@ -1240,6 +1278,7 @@ public class SatelliteServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "publishImageVersion failed: unknown result"); } + @Override public java.lang.String createLecture(java.lang.String userToken, LectureWrite lecture) throws TAuthorizationException, TInvocationException, TInvalidDateParam, TNotFoundException, org.apache.thrift.TException { send_createLecture(userToken, lecture); @@ -1276,6 +1315,7 @@ public class SatelliteServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "createLecture failed: unknown result"); } + @Override public void updateLecture(java.lang.String userToken, java.lang.String lectureId, LectureWrite lecture) throws TAuthorizationException, TNotFoundException, TInvocationException, TInvalidDateParam, org.apache.thrift.TException { send_updateLecture(userToken, lectureId, lecture); @@ -1310,6 +1350,7 @@ public class SatelliteServer { return; } + @Override public java.util.List getLectureList(java.lang.String userToken, int page) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException { send_getLectureList(userToken, page); @@ -1340,6 +1381,7 @@ public class SatelliteServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getLectureList failed: unknown result"); } + @Override public LectureRead getLectureDetails(java.lang.String userToken, java.lang.String lectureId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { send_getLectureDetails(userToken, lectureId); @@ -1373,6 +1415,7 @@ public class SatelliteServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getLectureDetails failed: unknown result"); } + @Override public void deleteLecture(java.lang.String userToken, java.lang.String lectureId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { send_deleteLecture(userToken, lectureId); @@ -1403,6 +1446,7 @@ public class SatelliteServer { return; } + @Override public void writeLecturePermissions(java.lang.String userToken, java.lang.String lectureId, java.util.Map permissions) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { send_writeLecturePermissions(userToken, lectureId, permissions); @@ -1434,6 +1478,7 @@ public class SatelliteServer { return; } + @Override public java.util.Map getLecturePermissions(java.lang.String userToken, java.lang.String lectureId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { send_getLecturePermissions(userToken, lectureId); @@ -1467,6 +1512,7 @@ public class SatelliteServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getLecturePermissions failed: unknown result"); } + @Override public void setLectureOwner(java.lang.String userToken, java.lang.String lectureId, java.lang.String newOwnerId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { send_setLectureOwner(userToken, lectureId, newOwnerId); @@ -1498,6 +1544,7 @@ public class SatelliteServer { return; } + @Override public PredefinedData getPredefinedData(java.lang.String userToken) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException { send_getPredefinedData(userToken); @@ -1536,6 +1583,7 @@ public class SatelliteServer { this.clientManager = clientManager; this.protocolFactory = protocolFactory; } + @Override public AsyncClient getAsyncClient(org.apache.thrift.transport.TNonblockingTransport transport) { return new AsyncClient(protocolFactory, clientManager, transport); } @@ -1545,6 +1593,7 @@ public class SatelliteServer { super(protocolFactory, clientManager, transport); } + @Override public void getVersion(long clientVersion, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); getVersion_call method_call = new getVersion_call(clientVersion, resultHandler, this, ___protocolFactory, ___transport); @@ -1559,6 +1608,7 @@ public class SatelliteServer { this.clientVersion = clientVersion; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getVersion", org.apache.thrift.protocol.TMessageType.CALL, 0)); getVersion_args args = new getVersion_args(); @@ -1567,6 +1617,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public java.lang.Long getResult() throws org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -1577,6 +1628,7 @@ public class SatelliteServer { } } + @Override public void getSupportedFeatures(org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); getSupportedFeatures_call method_call = new getSupportedFeatures_call(resultHandler, this, ___protocolFactory, ___transport); @@ -1589,6 +1641,7 @@ public class SatelliteServer { super(client, protocolFactory, transport, resultHandler, false); } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getSupportedFeatures", org.apache.thrift.protocol.TMessageType.CALL, 0)); getSupportedFeatures_args args = new getSupportedFeatures_args(); @@ -1596,6 +1649,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public java.lang.String getResult() throws org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -1606,6 +1660,7 @@ public class SatelliteServer { } } + @Override public void getConfiguration(org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); getConfiguration_call method_call = new getConfiguration_call(resultHandler, this, ___protocolFactory, ___transport); @@ -1618,6 +1673,7 @@ public class SatelliteServer { super(client, protocolFactory, transport, resultHandler, false); } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getConfiguration", org.apache.thrift.protocol.TMessageType.CALL, 0)); getConfiguration_args args = new getConfiguration_args(); @@ -1625,6 +1681,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public SatelliteConfig getResult() throws org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -1635,6 +1692,7 @@ public class SatelliteServer { } } + @Override public void requestImageVersionUpload(java.lang.String userToken, java.lang.String imageBaseId, long fileSize, java.util.List blockHashes, java.nio.ByteBuffer machineDescription, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); requestImageVersionUpload_call method_call = new requestImageVersionUpload_call(userToken, imageBaseId, fileSize, blockHashes, machineDescription, resultHandler, this, ___protocolFactory, ___transport); @@ -1657,6 +1715,7 @@ public class SatelliteServer { this.machineDescription = machineDescription; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("requestImageVersionUpload", org.apache.thrift.protocol.TMessageType.CALL, 0)); requestImageVersionUpload_args args = new requestImageVersionUpload_args(); @@ -1669,6 +1728,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public TransferInformation getResult() throws TTransferRejectedException, TAuthorizationException, TInvocationException, TNotFoundException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -1679,6 +1739,7 @@ public class SatelliteServer { } } + @Override public void updateBlockHashes(java.lang.String uploadToken, java.util.List blockHashes, java.lang.String userToken, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); updateBlockHashes_call method_call = new updateBlockHashes_call(uploadToken, blockHashes, userToken, resultHandler, this, ___protocolFactory, ___transport); @@ -1697,6 +1758,7 @@ public class SatelliteServer { this.userToken = userToken; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("updateBlockHashes", org.apache.thrift.protocol.TMessageType.CALL, 0)); updateBlockHashes_args args = new updateBlockHashes_args(); @@ -1707,16 +1769,19 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public Void getResult() throws TInvalidTokenException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); } org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array()); org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport); + (new Client(prot)).recv_updateBlockHashes(); return null; } } + @Override public void setUploadOptions(java.lang.String userToken, java.lang.String uploadToken, UploadOptions options, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); setUploadOptions_call method_call = new setUploadOptions_call(userToken, uploadToken, options, resultHandler, this, ___protocolFactory, ___transport); @@ -1735,6 +1800,7 @@ public class SatelliteServer { this.options = options; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("setUploadOptions", org.apache.thrift.protocol.TMessageType.CALL, 0)); setUploadOptions_args args = new setUploadOptions_args(); @@ -1745,6 +1811,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public UploadOptions getResult() throws TAuthorizationException, TInvalidTokenException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -1755,6 +1822,7 @@ public class SatelliteServer { } } + @Override public void cancelUpload(java.lang.String uploadToken, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); cancelUpload_call method_call = new cancelUpload_call(uploadToken, resultHandler, this, ___protocolFactory, ___transport); @@ -1769,6 +1837,7 @@ public class SatelliteServer { this.uploadToken = uploadToken; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("cancelUpload", org.apache.thrift.protocol.TMessageType.CALL, 0)); cancelUpload_args args = new cancelUpload_args(); @@ -1777,16 +1846,19 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public Void getResult() throws TInvalidTokenException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); } org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array()); org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport); + (new Client(prot)).recv_cancelUpload(); return null; } } + @Override public void queryUploadStatus(java.lang.String uploadToken, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); queryUploadStatus_call method_call = new queryUploadStatus_call(uploadToken, resultHandler, this, ___protocolFactory, ___transport); @@ -1801,6 +1873,7 @@ public class SatelliteServer { this.uploadToken = uploadToken; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("queryUploadStatus", org.apache.thrift.protocol.TMessageType.CALL, 0)); queryUploadStatus_args args = new queryUploadStatus_args(); @@ -1809,6 +1882,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public TransferStatus getResult() throws TInvalidTokenException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -1819,6 +1893,7 @@ public class SatelliteServer { } } + @Override public void requestDownload(java.lang.String userToken, java.lang.String imageVersionId, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); requestDownload_call method_call = new requestDownload_call(userToken, imageVersionId, resultHandler, this, ___protocolFactory, ___transport); @@ -1835,6 +1910,7 @@ public class SatelliteServer { this.imageVersionId = imageVersionId; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("requestDownload", org.apache.thrift.protocol.TMessageType.CALL, 0)); requestDownload_args args = new requestDownload_args(); @@ -1844,6 +1920,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public TransferInformation getResult() throws TTransferRejectedException, TAuthorizationException, TInvocationException, TNotFoundException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -1854,6 +1931,7 @@ public class SatelliteServer { } } + @Override public void cancelDownload(java.lang.String downloadToken, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); cancelDownload_call method_call = new cancelDownload_call(downloadToken, resultHandler, this, ___protocolFactory, ___transport); @@ -1868,6 +1946,7 @@ public class SatelliteServer { this.downloadToken = downloadToken; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("cancelDownload", org.apache.thrift.protocol.TMessageType.CALL, 0)); cancelDownload_args args = new cancelDownload_args(); @@ -1876,16 +1955,19 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public Void getResult() throws TInvalidTokenException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); } org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array()); org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport); + (new Client(prot)).recv_cancelDownload(); return null; } } + @Override public void isAuthenticated(java.lang.String userToken, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); isAuthenticated_call method_call = new isAuthenticated_call(userToken, resultHandler, this, ___protocolFactory, ___transport); @@ -1900,6 +1982,7 @@ public class SatelliteServer { this.userToken = userToken; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("isAuthenticated", org.apache.thrift.protocol.TMessageType.CALL, 0)); isAuthenticated_args args = new isAuthenticated_args(); @@ -1908,16 +1991,19 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public Void getResult() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); } org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array()); org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport); + (new Client(prot)).recv_isAuthenticated(); return null; } } + @Override public void whoami(java.lang.String userToken, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); whoami_call method_call = new whoami_call(userToken, resultHandler, this, ___protocolFactory, ___transport); @@ -1932,6 +2018,7 @@ public class SatelliteServer { this.userToken = userToken; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("whoami", org.apache.thrift.protocol.TMessageType.CALL, 0)); whoami_args args = new whoami_args(); @@ -1940,6 +2027,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public WhoamiInfo getResult() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -1950,6 +2038,7 @@ public class SatelliteServer { } } + @Override public void invalidateSession(java.lang.String userToken, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); invalidateSession_call method_call = new invalidateSession_call(userToken, resultHandler, this, ___protocolFactory, ___transport); @@ -1964,6 +2053,7 @@ public class SatelliteServer { this.userToken = userToken; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("invalidateSession", org.apache.thrift.protocol.TMessageType.CALL, 0)); invalidateSession_args args = new invalidateSession_args(); @@ -1972,16 +2062,19 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public Void getResult() throws TInvalidTokenException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); } org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array()); org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport); + (new Client(prot)).recv_invalidateSession(); return null; } } + @Override public void getUserList(java.lang.String userToken, int page, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { checkReady(); getUserList_call method_call = new getUserList_call(userToken, page, resultHandler, this, ___protocolFactory, ___transport); @@ -1998,6 +2091,7 @@ public class SatelliteServer { this.page = page; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getUserList", org.apache.thrift.protocol.TMessageType.CALL, 0)); getUserList_args args = new getUserList_args(); @@ -2007,6 +2101,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public java.util.List getResult() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -2017,6 +2112,7 @@ public class SatelliteServer { } } + @Override public void getUserConfig(java.lang.String userToken, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); getUserConfig_call method_call = new getUserConfig_call(userToken, resultHandler, this, ___protocolFactory, ___transport); @@ -2031,6 +2127,7 @@ public class SatelliteServer { this.userToken = userToken; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getUserConfig", org.apache.thrift.protocol.TMessageType.CALL, 0)); getUserConfig_args args = new getUserConfig_args(); @@ -2039,6 +2136,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public SatelliteUserConfig getResult() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -2049,6 +2147,7 @@ public class SatelliteServer { } } + @Override public void setUserConfig(java.lang.String userToken, SatelliteUserConfig config, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); setUserConfig_call method_call = new setUserConfig_call(userToken, config, resultHandler, this, ___protocolFactory, ___transport); @@ -2065,6 +2164,7 @@ public class SatelliteServer { this.config = config; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("setUserConfig", org.apache.thrift.protocol.TMessageType.CALL, 0)); setUserConfig_args args = new setUserConfig_args(); @@ -2074,16 +2174,19 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public Void getResult() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); } org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array()); org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport); + (new Client(prot)).recv_setUserConfig(); return null; } } + @Override public void getOperatingSystems(org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { checkReady(); getOperatingSystems_call method_call = new getOperatingSystems_call(resultHandler, this, ___protocolFactory, ___transport); @@ -2096,6 +2199,7 @@ public class SatelliteServer { super(client, protocolFactory, transport, resultHandler, false); } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getOperatingSystems", org.apache.thrift.protocol.TMessageType.CALL, 0)); getOperatingSystems_args args = new getOperatingSystems_args(); @@ -2103,6 +2207,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public java.util.List getResult() throws org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -2113,6 +2218,7 @@ public class SatelliteServer { } } + @Override public void getVirtualizers(org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { checkReady(); getVirtualizers_call method_call = new getVirtualizers_call(resultHandler, this, ___protocolFactory, ___transport); @@ -2125,6 +2231,7 @@ public class SatelliteServer { super(client, protocolFactory, transport, resultHandler, false); } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getVirtualizers", org.apache.thrift.protocol.TMessageType.CALL, 0)); getVirtualizers_args args = new getVirtualizers_args(); @@ -2132,6 +2239,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public java.util.List getResult() throws org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -2142,6 +2250,7 @@ public class SatelliteServer { } } + @Override public void getAllOrganizations(org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { checkReady(); getAllOrganizations_call method_call = new getAllOrganizations_call(resultHandler, this, ___protocolFactory, ___transport); @@ -2154,6 +2263,7 @@ public class SatelliteServer { super(client, protocolFactory, transport, resultHandler, false); } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getAllOrganizations", org.apache.thrift.protocol.TMessageType.CALL, 0)); getAllOrganizations_args args = new getAllOrganizations_args(); @@ -2161,6 +2271,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public java.util.List getResult() throws org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -2171,6 +2282,7 @@ public class SatelliteServer { } } + @Override public void getLocations(org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { checkReady(); getLocations_call method_call = new getLocations_call(resultHandler, this, ___protocolFactory, ___transport); @@ -2183,6 +2295,7 @@ public class SatelliteServer { super(client, protocolFactory, transport, resultHandler, false); } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getLocations", org.apache.thrift.protocol.TMessageType.CALL, 0)); getLocations_args args = new getLocations_args(); @@ -2190,6 +2303,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public java.util.List getResult() throws org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -2200,6 +2314,7 @@ public class SatelliteServer { } } + @Override public void getStatus(org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); getStatus_call method_call = new getStatus_call(resultHandler, this, ___protocolFactory, ___transport); @@ -2212,6 +2327,7 @@ public class SatelliteServer { super(client, protocolFactory, transport, resultHandler, false); } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getStatus", org.apache.thrift.protocol.TMessageType.CALL, 0)); getStatus_args args = new getStatus_args(); @@ -2219,6 +2335,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public SatelliteStatus getResult() throws org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -2229,6 +2346,7 @@ public class SatelliteServer { } } + @Override public void getImageList(java.lang.String userToken, java.util.List tagSearch, int page, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { checkReady(); getImageList_call method_call = new getImageList_call(userToken, tagSearch, page, resultHandler, this, ___protocolFactory, ___transport); @@ -2247,6 +2365,7 @@ public class SatelliteServer { this.page = page; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getImageList", org.apache.thrift.protocol.TMessageType.CALL, 0)); getImageList_args args = new getImageList_args(); @@ -2257,6 +2376,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public java.util.List getResult() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -2267,6 +2387,7 @@ public class SatelliteServer { } } + @Override public void getImageDetails(java.lang.String userToken, java.lang.String imageBaseId, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); getImageDetails_call method_call = new getImageDetails_call(userToken, imageBaseId, resultHandler, this, ___protocolFactory, ___transport); @@ -2283,6 +2404,7 @@ public class SatelliteServer { this.imageBaseId = imageBaseId; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getImageDetails", org.apache.thrift.protocol.TMessageType.CALL, 0)); getImageDetails_args args = new getImageDetails_args(); @@ -2292,6 +2414,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public ImageDetailsRead getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -2302,6 +2425,7 @@ public class SatelliteServer { } } + @Override public void createImage(java.lang.String userToken, java.lang.String imageName, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); createImage_call method_call = new createImage_call(userToken, imageName, resultHandler, this, ___protocolFactory, ___transport); @@ -2318,6 +2442,7 @@ public class SatelliteServer { this.imageName = imageName; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("createImage", org.apache.thrift.protocol.TMessageType.CALL, 0)); createImage_args args = new createImage_args(); @@ -2327,6 +2452,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public java.lang.String getResult() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -2337,6 +2463,7 @@ public class SatelliteServer { } } + @Override public void updateImageBase(java.lang.String userToken, java.lang.String imageBaseId, ImageBaseWrite image, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); updateImageBase_call method_call = new updateImageBase_call(userToken, imageBaseId, image, resultHandler, this, ___protocolFactory, ___transport); @@ -2355,6 +2482,7 @@ public class SatelliteServer { this.image = image; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("updateImageBase", org.apache.thrift.protocol.TMessageType.CALL, 0)); updateImageBase_args args = new updateImageBase_args(); @@ -2365,16 +2493,19 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public Void getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); } org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array()); org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport); + (new Client(prot)).recv_updateImageBase(); return null; } } + @Override public void updateImageVersion(java.lang.String userToken, java.lang.String imageVersionId, ImageVersionWrite image, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); updateImageVersion_call method_call = new updateImageVersion_call(userToken, imageVersionId, image, resultHandler, this, ___protocolFactory, ___transport); @@ -2393,6 +2524,7 @@ public class SatelliteServer { this.image = image; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("updateImageVersion", org.apache.thrift.protocol.TMessageType.CALL, 0)); updateImageVersion_args args = new updateImageVersion_args(); @@ -2403,16 +2535,19 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public Void getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); } org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array()); org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport); + (new Client(prot)).recv_updateImageVersion(); return null; } } + @Override public void deleteImageVersion(java.lang.String userToken, java.lang.String imageVersionId, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); deleteImageVersion_call method_call = new deleteImageVersion_call(userToken, imageVersionId, resultHandler, this, ___protocolFactory, ___transport); @@ -2429,6 +2564,7 @@ public class SatelliteServer { this.imageVersionId = imageVersionId; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("deleteImageVersion", org.apache.thrift.protocol.TMessageType.CALL, 0)); deleteImageVersion_args args = new deleteImageVersion_args(); @@ -2438,16 +2574,19 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public Void getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); } org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array()); org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport); + (new Client(prot)).recv_deleteImageVersion(); return null; } } + @Override public void deleteImageBase(java.lang.String userToken, java.lang.String imageBaseId, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); deleteImageBase_call method_call = new deleteImageBase_call(userToken, imageBaseId, resultHandler, this, ___protocolFactory, ___transport); @@ -2464,6 +2603,7 @@ public class SatelliteServer { this.imageBaseId = imageBaseId; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("deleteImageBase", org.apache.thrift.protocol.TMessageType.CALL, 0)); deleteImageBase_args args = new deleteImageBase_args(); @@ -2473,16 +2613,19 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public Void getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); } org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array()); org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport); + (new Client(prot)).recv_deleteImageBase(); return null; } } + @Override public void writeImagePermissions(java.lang.String userToken, java.lang.String imageBaseId, java.util.Map permissions, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); writeImagePermissions_call method_call = new writeImagePermissions_call(userToken, imageBaseId, permissions, resultHandler, this, ___protocolFactory, ___transport); @@ -2501,6 +2644,7 @@ public class SatelliteServer { this.permissions = permissions; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("writeImagePermissions", org.apache.thrift.protocol.TMessageType.CALL, 0)); writeImagePermissions_args args = new writeImagePermissions_args(); @@ -2511,16 +2655,19 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public Void getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); } org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array()); org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport); + (new Client(prot)).recv_writeImagePermissions(); return null; } } + @Override public void getImagePermissions(java.lang.String userToken, java.lang.String imageBaseId, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { checkReady(); getImagePermissions_call method_call = new getImagePermissions_call(userToken, imageBaseId, resultHandler, this, ___protocolFactory, ___transport); @@ -2537,6 +2684,7 @@ public class SatelliteServer { this.imageBaseId = imageBaseId; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getImagePermissions", org.apache.thrift.protocol.TMessageType.CALL, 0)); getImagePermissions_args args = new getImagePermissions_args(); @@ -2546,6 +2694,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public java.util.Map getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -2556,6 +2705,7 @@ public class SatelliteServer { } } + @Override public void setImageOwner(java.lang.String userToken, java.lang.String imageBaseId, java.lang.String newOwnerId, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); setImageOwner_call method_call = new setImageOwner_call(userToken, imageBaseId, newOwnerId, resultHandler, this, ___protocolFactory, ___transport); @@ -2574,6 +2724,7 @@ public class SatelliteServer { this.newOwnerId = newOwnerId; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("setImageOwner", org.apache.thrift.protocol.TMessageType.CALL, 0)); setImageOwner_args args = new setImageOwner_args(); @@ -2584,16 +2735,19 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public Void getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); } org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array()); org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport); + (new Client(prot)).recv_setImageOwner(); return null; } } + @Override public void setImageVersionExpiry(java.lang.String userToken, java.lang.String imageBaseId, long expireTime, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); setImageVersionExpiry_call method_call = new setImageVersionExpiry_call(userToken, imageBaseId, expireTime, resultHandler, this, ___protocolFactory, ___transport); @@ -2612,6 +2766,7 @@ public class SatelliteServer { this.expireTime = expireTime; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("setImageVersionExpiry", org.apache.thrift.protocol.TMessageType.CALL, 0)); setImageVersionExpiry_args args = new setImageVersionExpiry_args(); @@ -2622,16 +2777,19 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public Void getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, TInvalidDateParam, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); } org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array()); org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport); + (new Client(prot)).recv_setImageVersionExpiry(); return null; } } + @Override public void getImageVersionVirtConfig(java.lang.String userToken, java.lang.String imageVersionId, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); getImageVersionVirtConfig_call method_call = new getImageVersionVirtConfig_call(userToken, imageVersionId, resultHandler, this, ___protocolFactory, ___transport); @@ -2648,6 +2806,7 @@ public class SatelliteServer { this.imageVersionId = imageVersionId; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getImageVersionVirtConfig", org.apache.thrift.protocol.TMessageType.CALL, 0)); getImageVersionVirtConfig_args args = new getImageVersionVirtConfig_args(); @@ -2657,6 +2816,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public java.nio.ByteBuffer getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -2667,6 +2827,7 @@ public class SatelliteServer { } } + @Override public void setImageVersionVirtConfig(java.lang.String userToken, java.lang.String imageVersionId, java.nio.ByteBuffer meta, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); setImageVersionVirtConfig_call method_call = new setImageVersionVirtConfig_call(userToken, imageVersionId, meta, resultHandler, this, ___protocolFactory, ___transport); @@ -2685,6 +2846,7 @@ public class SatelliteServer { this.meta = meta; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("setImageVersionVirtConfig", org.apache.thrift.protocol.TMessageType.CALL, 0)); setImageVersionVirtConfig_args args = new setImageVersionVirtConfig_args(); @@ -2695,16 +2857,19 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public Void getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); } org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array()); org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport); + (new Client(prot)).recv_setImageVersionVirtConfig(); return null; } } + @Override public void requestImageReplication(java.lang.String userToken, java.lang.String imageVersionId, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); requestImageReplication_call method_call = new requestImageReplication_call(userToken, imageVersionId, resultHandler, this, ___protocolFactory, ___transport); @@ -2721,6 +2886,7 @@ public class SatelliteServer { this.imageVersionId = imageVersionId; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("requestImageReplication", org.apache.thrift.protocol.TMessageType.CALL, 0)); requestImageReplication_args args = new requestImageReplication_args(); @@ -2730,6 +2896,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public java.lang.String getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -2740,6 +2907,7 @@ public class SatelliteServer { } } + @Override public void publishImageVersion(java.lang.String userToken, java.lang.String imageVersionId, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); publishImageVersion_call method_call = new publishImageVersion_call(userToken, imageVersionId, resultHandler, this, ___protocolFactory, ___transport); @@ -2756,6 +2924,7 @@ public class SatelliteServer { this.imageVersionId = imageVersionId; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("publishImageVersion", org.apache.thrift.protocol.TMessageType.CALL, 0)); publishImageVersion_args args = new publishImageVersion_args(); @@ -2765,6 +2934,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public java.lang.String getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, TTransferRejectedException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -2775,6 +2945,7 @@ public class SatelliteServer { } } + @Override public void createLecture(java.lang.String userToken, LectureWrite lecture, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); createLecture_call method_call = new createLecture_call(userToken, lecture, resultHandler, this, ___protocolFactory, ___transport); @@ -2791,6 +2962,7 @@ public class SatelliteServer { this.lecture = lecture; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("createLecture", org.apache.thrift.protocol.TMessageType.CALL, 0)); createLecture_args args = new createLecture_args(); @@ -2800,6 +2972,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public java.lang.String getResult() throws TAuthorizationException, TInvocationException, TInvalidDateParam, TNotFoundException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -2810,6 +2983,7 @@ public class SatelliteServer { } } + @Override public void updateLecture(java.lang.String userToken, java.lang.String lectureId, LectureWrite lecture, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); updateLecture_call method_call = new updateLecture_call(userToken, lectureId, lecture, resultHandler, this, ___protocolFactory, ___transport); @@ -2828,6 +3002,7 @@ public class SatelliteServer { this.lecture = lecture; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("updateLecture", org.apache.thrift.protocol.TMessageType.CALL, 0)); updateLecture_args args = new updateLecture_args(); @@ -2838,16 +3013,19 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public Void getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, TInvalidDateParam, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); } org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array()); org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport); + (new Client(prot)).recv_updateLecture(); return null; } } + @Override public void getLectureList(java.lang.String userToken, int page, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { checkReady(); getLectureList_call method_call = new getLectureList_call(userToken, page, resultHandler, this, ___protocolFactory, ___transport); @@ -2864,6 +3042,7 @@ public class SatelliteServer { this.page = page; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getLectureList", org.apache.thrift.protocol.TMessageType.CALL, 0)); getLectureList_args args = new getLectureList_args(); @@ -2873,6 +3052,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public java.util.List getResult() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -2883,6 +3063,7 @@ public class SatelliteServer { } } + @Override public void getLectureDetails(java.lang.String userToken, java.lang.String lectureId, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); getLectureDetails_call method_call = new getLectureDetails_call(userToken, lectureId, resultHandler, this, ___protocolFactory, ___transport); @@ -2899,6 +3080,7 @@ public class SatelliteServer { this.lectureId = lectureId; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getLectureDetails", org.apache.thrift.protocol.TMessageType.CALL, 0)); getLectureDetails_args args = new getLectureDetails_args(); @@ -2908,6 +3090,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public LectureRead getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -2918,6 +3101,7 @@ public class SatelliteServer { } } + @Override public void deleteLecture(java.lang.String userToken, java.lang.String lectureId, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); deleteLecture_call method_call = new deleteLecture_call(userToken, lectureId, resultHandler, this, ___protocolFactory, ___transport); @@ -2934,6 +3118,7 @@ public class SatelliteServer { this.lectureId = lectureId; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("deleteLecture", org.apache.thrift.protocol.TMessageType.CALL, 0)); deleteLecture_args args = new deleteLecture_args(); @@ -2943,16 +3128,19 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public Void getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); } org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array()); org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport); + (new Client(prot)).recv_deleteLecture(); return null; } } + @Override public void writeLecturePermissions(java.lang.String userToken, java.lang.String lectureId, java.util.Map permissions, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); writeLecturePermissions_call method_call = new writeLecturePermissions_call(userToken, lectureId, permissions, resultHandler, this, ___protocolFactory, ___transport); @@ -2971,6 +3159,7 @@ public class SatelliteServer { this.permissions = permissions; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("writeLecturePermissions", org.apache.thrift.protocol.TMessageType.CALL, 0)); writeLecturePermissions_args args = new writeLecturePermissions_args(); @@ -2981,16 +3170,19 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public Void getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); } org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array()); org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport); + (new Client(prot)).recv_writeLecturePermissions(); return null; } } + @Override public void getLecturePermissions(java.lang.String userToken, java.lang.String lectureId, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { checkReady(); getLecturePermissions_call method_call = new getLecturePermissions_call(userToken, lectureId, resultHandler, this, ___protocolFactory, ___transport); @@ -3007,6 +3199,7 @@ public class SatelliteServer { this.lectureId = lectureId; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getLecturePermissions", org.apache.thrift.protocol.TMessageType.CALL, 0)); getLecturePermissions_args args = new getLecturePermissions_args(); @@ -3016,6 +3209,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public java.util.Map getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -3026,6 +3220,7 @@ public class SatelliteServer { } } + @Override public void setLectureOwner(java.lang.String userToken, java.lang.String lectureId, java.lang.String newOwnerId, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); setLectureOwner_call method_call = new setLectureOwner_call(userToken, lectureId, newOwnerId, resultHandler, this, ___protocolFactory, ___transport); @@ -3044,6 +3239,7 @@ public class SatelliteServer { this.newOwnerId = newOwnerId; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("setLectureOwner", org.apache.thrift.protocol.TMessageType.CALL, 0)); setLectureOwner_args args = new setLectureOwner_args(); @@ -3054,16 +3250,19 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public Void getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); } org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array()); org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport); + (new Client(prot)).recv_setLectureOwner(); return null; } } + @Override public void getPredefinedData(java.lang.String userToken, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); getPredefinedData_call method_call = new getPredefinedData_call(userToken, resultHandler, this, ___protocolFactory, ___transport); @@ -3078,6 +3277,7 @@ public class SatelliteServer { this.userToken = userToken; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getPredefinedData", org.apache.thrift.protocol.TMessageType.CALL, 0)); getPredefinedData_args args = new getPredefinedData_args(); @@ -3086,6 +3286,7 @@ public class SatelliteServer { prot.writeMessageEnd(); } + @Override public PredefinedData getResult() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -3162,10 +3363,12 @@ public class SatelliteServer { super("getVersion"); } + @Override public getVersion_args getEmptyArgsInstance() { return new getVersion_args(); } + @Override protected boolean isOneway() { return false; } @@ -3175,6 +3378,7 @@ public class SatelliteServer { return false; } + @Override public getVersion_result getResult(I iface, getVersion_args args) throws org.apache.thrift.TException { getVersion_result result = new getVersion_result(); result.success = iface.getVersion(args.clientVersion); @@ -3188,10 +3392,12 @@ public class SatelliteServer { super("getSupportedFeatures"); } + @Override public getSupportedFeatures_args getEmptyArgsInstance() { return new getSupportedFeatures_args(); } + @Override protected boolean isOneway() { return false; } @@ -3201,6 +3407,7 @@ public class SatelliteServer { return false; } + @Override public getSupportedFeatures_result getResult(I iface, getSupportedFeatures_args args) throws org.apache.thrift.TException { getSupportedFeatures_result result = new getSupportedFeatures_result(); result.success = iface.getSupportedFeatures(); @@ -3213,10 +3420,12 @@ public class SatelliteServer { super("getConfiguration"); } + @Override public getConfiguration_args getEmptyArgsInstance() { return new getConfiguration_args(); } + @Override protected boolean isOneway() { return false; } @@ -3226,6 +3435,7 @@ public class SatelliteServer { return false; } + @Override public getConfiguration_result getResult(I iface, getConfiguration_args args) throws org.apache.thrift.TException { getConfiguration_result result = new getConfiguration_result(); result.success = iface.getConfiguration(); @@ -3238,10 +3448,12 @@ public class SatelliteServer { super("requestImageVersionUpload"); } + @Override public requestImageVersionUpload_args getEmptyArgsInstance() { return new requestImageVersionUpload_args(); } + @Override protected boolean isOneway() { return false; } @@ -3251,6 +3463,7 @@ public class SatelliteServer { return false; } + @Override public requestImageVersionUpload_result getResult(I iface, requestImageVersionUpload_args args) throws org.apache.thrift.TException { requestImageVersionUpload_result result = new requestImageVersionUpload_result(); try { @@ -3273,10 +3486,12 @@ public class SatelliteServer { super("updateBlockHashes"); } + @Override public updateBlockHashes_args getEmptyArgsInstance() { return new updateBlockHashes_args(); } + @Override protected boolean isOneway() { return false; } @@ -3286,6 +3501,7 @@ public class SatelliteServer { return false; } + @Override public updateBlockHashes_result getResult(I iface, updateBlockHashes_args args) throws org.apache.thrift.TException { updateBlockHashes_result result = new updateBlockHashes_result(); try { @@ -3302,10 +3518,12 @@ public class SatelliteServer { super("setUploadOptions"); } + @Override public setUploadOptions_args getEmptyArgsInstance() { return new setUploadOptions_args(); } + @Override protected boolean isOneway() { return false; } @@ -3315,6 +3533,7 @@ public class SatelliteServer { return false; } + @Override public setUploadOptions_result getResult(I iface, setUploadOptions_args args) throws org.apache.thrift.TException { setUploadOptions_result result = new setUploadOptions_result(); try { @@ -3333,10 +3552,12 @@ public class SatelliteServer { super("cancelUpload"); } + @Override public cancelUpload_args getEmptyArgsInstance() { return new cancelUpload_args(); } + @Override protected boolean isOneway() { return false; } @@ -3346,6 +3567,7 @@ public class SatelliteServer { return false; } + @Override public cancelUpload_result getResult(I iface, cancelUpload_args args) throws org.apache.thrift.TException { cancelUpload_result result = new cancelUpload_result(); try { @@ -3362,10 +3584,12 @@ public class SatelliteServer { super("queryUploadStatus"); } + @Override public queryUploadStatus_args getEmptyArgsInstance() { return new queryUploadStatus_args(); } + @Override protected boolean isOneway() { return false; } @@ -3375,6 +3599,7 @@ public class SatelliteServer { return false; } + @Override public queryUploadStatus_result getResult(I iface, queryUploadStatus_args args) throws org.apache.thrift.TException { queryUploadStatus_result result = new queryUploadStatus_result(); try { @@ -3391,10 +3616,12 @@ public class SatelliteServer { super("requestDownload"); } + @Override public requestDownload_args getEmptyArgsInstance() { return new requestDownload_args(); } + @Override protected boolean isOneway() { return false; } @@ -3404,6 +3631,7 @@ public class SatelliteServer { return false; } + @Override public requestDownload_result getResult(I iface, requestDownload_args args) throws org.apache.thrift.TException { requestDownload_result result = new requestDownload_result(); try { @@ -3426,10 +3654,12 @@ public class SatelliteServer { super("cancelDownload"); } + @Override public cancelDownload_args getEmptyArgsInstance() { return new cancelDownload_args(); } + @Override protected boolean isOneway() { return false; } @@ -3439,6 +3669,7 @@ public class SatelliteServer { return false; } + @Override public cancelDownload_result getResult(I iface, cancelDownload_args args) throws org.apache.thrift.TException { cancelDownload_result result = new cancelDownload_result(); try { @@ -3455,10 +3686,12 @@ public class SatelliteServer { super("isAuthenticated"); } + @Override public isAuthenticated_args getEmptyArgsInstance() { return new isAuthenticated_args(); } + @Override protected boolean isOneway() { return false; } @@ -3468,6 +3701,7 @@ public class SatelliteServer { return false; } + @Override public isAuthenticated_result getResult(I iface, isAuthenticated_args args) throws org.apache.thrift.TException { isAuthenticated_result result = new isAuthenticated_result(); try { @@ -3486,10 +3720,12 @@ public class SatelliteServer { super("whoami"); } + @Override public whoami_args getEmptyArgsInstance() { return new whoami_args(); } + @Override protected boolean isOneway() { return false; } @@ -3499,6 +3735,7 @@ public class SatelliteServer { return false; } + @Override public whoami_result getResult(I iface, whoami_args args) throws org.apache.thrift.TException { whoami_result result = new whoami_result(); try { @@ -3517,10 +3754,12 @@ public class SatelliteServer { super("invalidateSession"); } + @Override public invalidateSession_args getEmptyArgsInstance() { return new invalidateSession_args(); } + @Override protected boolean isOneway() { return false; } @@ -3530,6 +3769,7 @@ public class SatelliteServer { return false; } + @Override public invalidateSession_result getResult(I iface, invalidateSession_args args) throws org.apache.thrift.TException { invalidateSession_result result = new invalidateSession_result(); try { @@ -3546,10 +3786,12 @@ public class SatelliteServer { super("getUserList"); } + @Override public getUserList_args getEmptyArgsInstance() { return new getUserList_args(); } + @Override protected boolean isOneway() { return false; } @@ -3559,6 +3801,7 @@ public class SatelliteServer { return false; } + @Override public getUserList_result getResult(I iface, getUserList_args args) throws org.apache.thrift.TException { getUserList_result result = new getUserList_result(); try { @@ -3577,10 +3820,12 @@ public class SatelliteServer { super("getUserConfig"); } + @Override public getUserConfig_args getEmptyArgsInstance() { return new getUserConfig_args(); } + @Override protected boolean isOneway() { return false; } @@ -3590,6 +3835,7 @@ public class SatelliteServer { return false; } + @Override public getUserConfig_result getResult(I iface, getUserConfig_args args) throws org.apache.thrift.TException { getUserConfig_result result = new getUserConfig_result(); try { @@ -3608,10 +3854,12 @@ public class SatelliteServer { super("setUserConfig"); } + @Override public setUserConfig_args getEmptyArgsInstance() { return new setUserConfig_args(); } + @Override protected boolean isOneway() { return false; } @@ -3621,6 +3869,7 @@ public class SatelliteServer { return false; } + @Override public setUserConfig_result getResult(I iface, setUserConfig_args args) throws org.apache.thrift.TException { setUserConfig_result result = new setUserConfig_result(); try { @@ -3639,10 +3888,12 @@ public class SatelliteServer { super("getOperatingSystems"); } + @Override public getOperatingSystems_args getEmptyArgsInstance() { return new getOperatingSystems_args(); } + @Override protected boolean isOneway() { return false; } @@ -3652,6 +3903,7 @@ public class SatelliteServer { return false; } + @Override public getOperatingSystems_result getResult(I iface, getOperatingSystems_args args) throws org.apache.thrift.TException { getOperatingSystems_result result = new getOperatingSystems_result(); result.success = iface.getOperatingSystems(); @@ -3664,10 +3916,12 @@ public class SatelliteServer { super("getVirtualizers"); } + @Override public getVirtualizers_args getEmptyArgsInstance() { return new getVirtualizers_args(); } + @Override protected boolean isOneway() { return false; } @@ -3677,6 +3931,7 @@ public class SatelliteServer { return false; } + @Override public getVirtualizers_result getResult(I iface, getVirtualizers_args args) throws org.apache.thrift.TException { getVirtualizers_result result = new getVirtualizers_result(); result.success = iface.getVirtualizers(); @@ -3689,10 +3944,12 @@ public class SatelliteServer { super("getAllOrganizations"); } + @Override public getAllOrganizations_args getEmptyArgsInstance() { return new getAllOrganizations_args(); } + @Override protected boolean isOneway() { return false; } @@ -3702,6 +3959,7 @@ public class SatelliteServer { return false; } + @Override public getAllOrganizations_result getResult(I iface, getAllOrganizations_args args) throws org.apache.thrift.TException { getAllOrganizations_result result = new getAllOrganizations_result(); result.success = iface.getAllOrganizations(); @@ -3714,10 +3972,12 @@ public class SatelliteServer { super("getLocations"); } + @Override public getLocations_args getEmptyArgsInstance() { return new getLocations_args(); } + @Override protected boolean isOneway() { return false; } @@ -3727,6 +3987,7 @@ public class SatelliteServer { return false; } + @Override public getLocations_result getResult(I iface, getLocations_args args) throws org.apache.thrift.TException { getLocations_result result = new getLocations_result(); result.success = iface.getLocations(); @@ -3739,10 +4000,12 @@ public class SatelliteServer { super("getStatus"); } + @Override public getStatus_args getEmptyArgsInstance() { return new getStatus_args(); } + @Override protected boolean isOneway() { return false; } @@ -3752,6 +4015,7 @@ public class SatelliteServer { return false; } + @Override public getStatus_result getResult(I iface, getStatus_args args) throws org.apache.thrift.TException { getStatus_result result = new getStatus_result(); result.success = iface.getStatus(); @@ -3764,10 +4028,12 @@ public class SatelliteServer { super("getImageList"); } + @Override public getImageList_args getEmptyArgsInstance() { return new getImageList_args(); } + @Override protected boolean isOneway() { return false; } @@ -3777,6 +4043,7 @@ public class SatelliteServer { return false; } + @Override public getImageList_result getResult(I iface, getImageList_args args) throws org.apache.thrift.TException { getImageList_result result = new getImageList_result(); try { @@ -3795,10 +4062,12 @@ public class SatelliteServer { super("getImageDetails"); } + @Override public getImageDetails_args getEmptyArgsInstance() { return new getImageDetails_args(); } + @Override protected boolean isOneway() { return false; } @@ -3808,6 +4077,7 @@ public class SatelliteServer { return false; } + @Override public getImageDetails_result getResult(I iface, getImageDetails_args args) throws org.apache.thrift.TException { getImageDetails_result result = new getImageDetails_result(); try { @@ -3828,10 +4098,12 @@ public class SatelliteServer { super("createImage"); } + @Override public createImage_args getEmptyArgsInstance() { return new createImage_args(); } + @Override protected boolean isOneway() { return false; } @@ -3841,6 +4113,7 @@ public class SatelliteServer { return false; } + @Override public createImage_result getResult(I iface, createImage_args args) throws org.apache.thrift.TException { createImage_result result = new createImage_result(); try { @@ -3859,10 +4132,12 @@ public class SatelliteServer { super("updateImageBase"); } + @Override public updateImageBase_args getEmptyArgsInstance() { return new updateImageBase_args(); } + @Override protected boolean isOneway() { return false; } @@ -3872,6 +4147,7 @@ public class SatelliteServer { return false; } + @Override public updateImageBase_result getResult(I iface, updateImageBase_args args) throws org.apache.thrift.TException { updateImageBase_result result = new updateImageBase_result(); try { @@ -3892,10 +4168,12 @@ public class SatelliteServer { super("updateImageVersion"); } + @Override public updateImageVersion_args getEmptyArgsInstance() { return new updateImageVersion_args(); } + @Override protected boolean isOneway() { return false; } @@ -3905,6 +4183,7 @@ public class SatelliteServer { return false; } + @Override public updateImageVersion_result getResult(I iface, updateImageVersion_args args) throws org.apache.thrift.TException { updateImageVersion_result result = new updateImageVersion_result(); try { @@ -3925,10 +4204,12 @@ public class SatelliteServer { super("deleteImageVersion"); } + @Override public deleteImageVersion_args getEmptyArgsInstance() { return new deleteImageVersion_args(); } + @Override protected boolean isOneway() { return false; } @@ -3938,6 +4219,7 @@ public class SatelliteServer { return false; } + @Override public deleteImageVersion_result getResult(I iface, deleteImageVersion_args args) throws org.apache.thrift.TException { deleteImageVersion_result result = new deleteImageVersion_result(); try { @@ -3958,10 +4240,12 @@ public class SatelliteServer { super("deleteImageBase"); } + @Override public deleteImageBase_args getEmptyArgsInstance() { return new deleteImageBase_args(); } + @Override protected boolean isOneway() { return false; } @@ -3971,6 +4255,7 @@ public class SatelliteServer { return false; } + @Override public deleteImageBase_result getResult(I iface, deleteImageBase_args args) throws org.apache.thrift.TException { deleteImageBase_result result = new deleteImageBase_result(); try { @@ -3991,10 +4276,12 @@ public class SatelliteServer { super("writeImagePermissions"); } + @Override public writeImagePermissions_args getEmptyArgsInstance() { return new writeImagePermissions_args(); } + @Override protected boolean isOneway() { return false; } @@ -4004,6 +4291,7 @@ public class SatelliteServer { return false; } + @Override public writeImagePermissions_result getResult(I iface, writeImagePermissions_args args) throws org.apache.thrift.TException { writeImagePermissions_result result = new writeImagePermissions_result(); try { @@ -4024,10 +4312,12 @@ public class SatelliteServer { super("getImagePermissions"); } + @Override public getImagePermissions_args getEmptyArgsInstance() { return new getImagePermissions_args(); } + @Override protected boolean isOneway() { return false; } @@ -4037,6 +4327,7 @@ public class SatelliteServer { return false; } + @Override public getImagePermissions_result getResult(I iface, getImagePermissions_args args) throws org.apache.thrift.TException { getImagePermissions_result result = new getImagePermissions_result(); try { @@ -4057,10 +4348,12 @@ public class SatelliteServer { super("setImageOwner"); } + @Override public setImageOwner_args getEmptyArgsInstance() { return new setImageOwner_args(); } + @Override protected boolean isOneway() { return false; } @@ -4070,6 +4363,7 @@ public class SatelliteServer { return false; } + @Override public setImageOwner_result getResult(I iface, setImageOwner_args args) throws org.apache.thrift.TException { setImageOwner_result result = new setImageOwner_result(); try { @@ -4090,10 +4384,12 @@ public class SatelliteServer { super("setImageVersionExpiry"); } + @Override public setImageVersionExpiry_args getEmptyArgsInstance() { return new setImageVersionExpiry_args(); } + @Override protected boolean isOneway() { return false; } @@ -4103,6 +4399,7 @@ public class SatelliteServer { return false; } + @Override public setImageVersionExpiry_result getResult(I iface, setImageVersionExpiry_args args) throws org.apache.thrift.TException { setImageVersionExpiry_result result = new setImageVersionExpiry_result(); try { @@ -4125,10 +4422,12 @@ public class SatelliteServer { super("getImageVersionVirtConfig"); } + @Override public getImageVersionVirtConfig_args getEmptyArgsInstance() { return new getImageVersionVirtConfig_args(); } + @Override protected boolean isOneway() { return false; } @@ -4138,6 +4437,7 @@ public class SatelliteServer { return false; } + @Override public getImageVersionVirtConfig_result getResult(I iface, getImageVersionVirtConfig_args args) throws org.apache.thrift.TException { getImageVersionVirtConfig_result result = new getImageVersionVirtConfig_result(); try { @@ -4158,10 +4458,12 @@ public class SatelliteServer { super("setImageVersionVirtConfig"); } + @Override public setImageVersionVirtConfig_args getEmptyArgsInstance() { return new setImageVersionVirtConfig_args(); } + @Override protected boolean isOneway() { return false; } @@ -4171,6 +4473,7 @@ public class SatelliteServer { return false; } + @Override public setImageVersionVirtConfig_result getResult(I iface, setImageVersionVirtConfig_args args) throws org.apache.thrift.TException { setImageVersionVirtConfig_result result = new setImageVersionVirtConfig_result(); try { @@ -4191,10 +4494,12 @@ public class SatelliteServer { super("requestImageReplication"); } + @Override public requestImageReplication_args getEmptyArgsInstance() { return new requestImageReplication_args(); } + @Override protected boolean isOneway() { return false; } @@ -4204,6 +4509,7 @@ public class SatelliteServer { return false; } + @Override public requestImageReplication_result getResult(I iface, requestImageReplication_args args) throws org.apache.thrift.TException { requestImageReplication_result result = new requestImageReplication_result(); try { @@ -4224,10 +4530,12 @@ public class SatelliteServer { super("publishImageVersion"); } + @Override public publishImageVersion_args getEmptyArgsInstance() { return new publishImageVersion_args(); } + @Override protected boolean isOneway() { return false; } @@ -4237,6 +4545,7 @@ public class SatelliteServer { return false; } + @Override public publishImageVersion_result getResult(I iface, publishImageVersion_args args) throws org.apache.thrift.TException { publishImageVersion_result result = new publishImageVersion_result(); try { @@ -4259,10 +4568,12 @@ public class SatelliteServer { super("createLecture"); } + @Override public createLecture_args getEmptyArgsInstance() { return new createLecture_args(); } + @Override protected boolean isOneway() { return false; } @@ -4272,6 +4583,7 @@ public class SatelliteServer { return false; } + @Override public createLecture_result getResult(I iface, createLecture_args args) throws org.apache.thrift.TException { createLecture_result result = new createLecture_result(); try { @@ -4294,10 +4606,12 @@ public class SatelliteServer { super("updateLecture"); } + @Override public updateLecture_args getEmptyArgsInstance() { return new updateLecture_args(); } + @Override protected boolean isOneway() { return false; } @@ -4307,6 +4621,7 @@ public class SatelliteServer { return false; } + @Override public updateLecture_result getResult(I iface, updateLecture_args args) throws org.apache.thrift.TException { updateLecture_result result = new updateLecture_result(); try { @@ -4329,10 +4644,12 @@ public class SatelliteServer { super("getLectureList"); } + @Override public getLectureList_args getEmptyArgsInstance() { return new getLectureList_args(); } + @Override protected boolean isOneway() { return false; } @@ -4342,6 +4659,7 @@ public class SatelliteServer { return false; } + @Override public getLectureList_result getResult(I iface, getLectureList_args args) throws org.apache.thrift.TException { getLectureList_result result = new getLectureList_result(); try { @@ -4360,10 +4678,12 @@ public class SatelliteServer { super("getLectureDetails"); } + @Override public getLectureDetails_args getEmptyArgsInstance() { return new getLectureDetails_args(); } + @Override protected boolean isOneway() { return false; } @@ -4373,6 +4693,7 @@ public class SatelliteServer { return false; } + @Override public getLectureDetails_result getResult(I iface, getLectureDetails_args args) throws org.apache.thrift.TException { getLectureDetails_result result = new getLectureDetails_result(); try { @@ -4393,10 +4714,12 @@ public class SatelliteServer { super("deleteLecture"); } + @Override public deleteLecture_args getEmptyArgsInstance() { return new deleteLecture_args(); } + @Override protected boolean isOneway() { return false; } @@ -4406,6 +4729,7 @@ public class SatelliteServer { return false; } + @Override public deleteLecture_result getResult(I iface, deleteLecture_args args) throws org.apache.thrift.TException { deleteLecture_result result = new deleteLecture_result(); try { @@ -4426,10 +4750,12 @@ public class SatelliteServer { super("writeLecturePermissions"); } + @Override public writeLecturePermissions_args getEmptyArgsInstance() { return new writeLecturePermissions_args(); } + @Override protected boolean isOneway() { return false; } @@ -4439,6 +4765,7 @@ public class SatelliteServer { return false; } + @Override public writeLecturePermissions_result getResult(I iface, writeLecturePermissions_args args) throws org.apache.thrift.TException { writeLecturePermissions_result result = new writeLecturePermissions_result(); try { @@ -4459,10 +4786,12 @@ public class SatelliteServer { super("getLecturePermissions"); } + @Override public getLecturePermissions_args getEmptyArgsInstance() { return new getLecturePermissions_args(); } + @Override protected boolean isOneway() { return false; } @@ -4472,6 +4801,7 @@ public class SatelliteServer { return false; } + @Override public getLecturePermissions_result getResult(I iface, getLecturePermissions_args args) throws org.apache.thrift.TException { getLecturePermissions_result result = new getLecturePermissions_result(); try { @@ -4492,10 +4822,12 @@ public class SatelliteServer { super("setLectureOwner"); } + @Override public setLectureOwner_args getEmptyArgsInstance() { return new setLectureOwner_args(); } + @Override protected boolean isOneway() { return false; } @@ -4505,6 +4837,7 @@ public class SatelliteServer { return false; } + @Override public setLectureOwner_result getResult(I iface, setLectureOwner_args args) throws org.apache.thrift.TException { setLectureOwner_result result = new setLectureOwner_result(); try { @@ -4525,10 +4858,12 @@ public class SatelliteServer { super("getPredefinedData"); } + @Override public getPredefinedData_args getEmptyArgsInstance() { return new getPredefinedData_args(); } + @Override protected boolean isOneway() { return false; } @@ -4538,6 +4873,7 @@ public class SatelliteServer { return false; } + @Override public getPredefinedData_result getResult(I iface, getPredefinedData_args args) throws org.apache.thrift.TException { getPredefinedData_result result = new getPredefinedData_result(); try { @@ -4617,13 +4953,16 @@ public class SatelliteServer { super("getVersion"); } + @Override public getVersion_args getEmptyArgsInstance() { return new getVersion_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(java.lang.Long o) { getVersion_result result = new getVersion_result(); result.success = o; @@ -4638,6 +4977,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -4665,10 +5005,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, getVersion_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.getVersion(args.clientVersion,resultHandler); } @@ -4679,13 +5021,16 @@ public class SatelliteServer { super("getSupportedFeatures"); } + @Override public getSupportedFeatures_args getEmptyArgsInstance() { return new getSupportedFeatures_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(java.lang.String o) { getSupportedFeatures_result result = new getSupportedFeatures_result(); result.success = o; @@ -4699,6 +5044,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -4726,10 +5072,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, getSupportedFeatures_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.getSupportedFeatures(resultHandler); } @@ -4740,13 +5088,16 @@ public class SatelliteServer { super("getConfiguration"); } + @Override public getConfiguration_args getEmptyArgsInstance() { return new getConfiguration_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(SatelliteConfig o) { getConfiguration_result result = new getConfiguration_result(); result.success = o; @@ -4760,6 +5111,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -4787,10 +5139,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, getConfiguration_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.getConfiguration(resultHandler); } @@ -4801,13 +5155,16 @@ public class SatelliteServer { super("requestImageVersionUpload"); } + @Override public requestImageVersionUpload_args getEmptyArgsInstance() { return new requestImageVersionUpload_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(TransferInformation o) { requestImageVersionUpload_result result = new requestImageVersionUpload_result(); result.success = o; @@ -4821,6 +5178,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -4864,10 +5222,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, requestImageVersionUpload_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.requestImageVersionUpload(args.userToken, args.imageBaseId, args.fileSize, args.blockHashes, args.machineDescription,resultHandler); } @@ -4878,13 +5238,16 @@ public class SatelliteServer { super("updateBlockHashes"); } + @Override public updateBlockHashes_args getEmptyArgsInstance() { return new updateBlockHashes_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(Void o) { updateBlockHashes_result result = new updateBlockHashes_result(); try { @@ -4897,6 +5260,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -4928,10 +5292,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, updateBlockHashes_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.updateBlockHashes(args.uploadToken, args.blockHashes, args.userToken,resultHandler); } @@ -4942,13 +5308,16 @@ public class SatelliteServer { super("setUploadOptions"); } + @Override public setUploadOptions_args getEmptyArgsInstance() { return new setUploadOptions_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(UploadOptions o) { setUploadOptions_result result = new setUploadOptions_result(); result.success = o; @@ -4962,6 +5331,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -4997,10 +5367,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, setUploadOptions_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.setUploadOptions(args.userToken, args.uploadToken, args.options,resultHandler); } @@ -5011,13 +5383,16 @@ public class SatelliteServer { super("cancelUpload"); } + @Override public cancelUpload_args getEmptyArgsInstance() { return new cancelUpload_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(Void o) { cancelUpload_result result = new cancelUpload_result(); try { @@ -5030,6 +5405,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -5061,10 +5437,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, cancelUpload_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.cancelUpload(args.uploadToken,resultHandler); } @@ -5075,13 +5453,16 @@ public class SatelliteServer { super("queryUploadStatus"); } + @Override public queryUploadStatus_args getEmptyArgsInstance() { return new queryUploadStatus_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(TransferStatus o) { queryUploadStatus_result result = new queryUploadStatus_result(); result.success = o; @@ -5095,6 +5476,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -5126,10 +5508,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, queryUploadStatus_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.queryUploadStatus(args.uploadToken,resultHandler); } @@ -5140,13 +5524,16 @@ public class SatelliteServer { super("requestDownload"); } + @Override public requestDownload_args getEmptyArgsInstance() { return new requestDownload_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(TransferInformation o) { requestDownload_result result = new requestDownload_result(); result.success = o; @@ -5160,6 +5547,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -5203,10 +5591,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, requestDownload_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.requestDownload(args.userToken, args.imageVersionId,resultHandler); } @@ -5217,13 +5607,16 @@ public class SatelliteServer { super("cancelDownload"); } + @Override public cancelDownload_args getEmptyArgsInstance() { return new cancelDownload_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(Void o) { cancelDownload_result result = new cancelDownload_result(); try { @@ -5236,6 +5629,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -5267,10 +5661,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, cancelDownload_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.cancelDownload(args.downloadToken,resultHandler); } @@ -5281,13 +5677,16 @@ public class SatelliteServer { super("isAuthenticated"); } + @Override public isAuthenticated_args getEmptyArgsInstance() { return new isAuthenticated_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(Void o) { isAuthenticated_result result = new isAuthenticated_result(); try { @@ -5300,6 +5699,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -5335,10 +5735,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, isAuthenticated_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.isAuthenticated(args.userToken,resultHandler); } @@ -5349,13 +5751,16 @@ public class SatelliteServer { super("whoami"); } + @Override public whoami_args getEmptyArgsInstance() { return new whoami_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(WhoamiInfo o) { whoami_result result = new whoami_result(); result.success = o; @@ -5369,6 +5774,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -5404,10 +5810,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, whoami_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.whoami(args.userToken,resultHandler); } @@ -5418,13 +5826,16 @@ public class SatelliteServer { super("invalidateSession"); } + @Override public invalidateSession_args getEmptyArgsInstance() { return new invalidateSession_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(Void o) { invalidateSession_result result = new invalidateSession_result(); try { @@ -5437,6 +5848,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -5468,10 +5880,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, invalidateSession_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.invalidateSession(args.userToken,resultHandler); } @@ -5482,13 +5896,16 @@ public class SatelliteServer { super("getUserList"); } + @Override public getUserList_args getEmptyArgsInstance() { return new getUserList_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { + @Override public void onComplete(java.util.List o) { getUserList_result result = new getUserList_result(); result.success = o; @@ -5502,6 +5919,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -5537,10 +5955,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, getUserList_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { iface.getUserList(args.userToken, args.page,resultHandler); } @@ -5551,13 +5971,16 @@ public class SatelliteServer { super("getUserConfig"); } + @Override public getUserConfig_args getEmptyArgsInstance() { return new getUserConfig_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(SatelliteUserConfig o) { getUserConfig_result result = new getUserConfig_result(); result.success = o; @@ -5571,6 +5994,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -5606,10 +6030,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, getUserConfig_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.getUserConfig(args.userToken,resultHandler); } @@ -5620,13 +6046,16 @@ public class SatelliteServer { super("setUserConfig"); } + @Override public setUserConfig_args getEmptyArgsInstance() { return new setUserConfig_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(Void o) { setUserConfig_result result = new setUserConfig_result(); try { @@ -5639,6 +6068,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -5674,10 +6104,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, setUserConfig_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.setUserConfig(args.userToken, args.config,resultHandler); } @@ -5688,13 +6120,16 @@ public class SatelliteServer { super("getOperatingSystems"); } + @Override public getOperatingSystems_args getEmptyArgsInstance() { return new getOperatingSystems_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { + @Override public void onComplete(java.util.List o) { getOperatingSystems_result result = new getOperatingSystems_result(); result.success = o; @@ -5708,6 +6143,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -5735,10 +6171,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, getOperatingSystems_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { iface.getOperatingSystems(resultHandler); } @@ -5749,13 +6187,16 @@ public class SatelliteServer { super("getVirtualizers"); } + @Override public getVirtualizers_args getEmptyArgsInstance() { return new getVirtualizers_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { + @Override public void onComplete(java.util.List o) { getVirtualizers_result result = new getVirtualizers_result(); result.success = o; @@ -5769,6 +6210,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -5796,10 +6238,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, getVirtualizers_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { iface.getVirtualizers(resultHandler); } @@ -5810,13 +6254,16 @@ public class SatelliteServer { super("getAllOrganizations"); } + @Override public getAllOrganizations_args getEmptyArgsInstance() { return new getAllOrganizations_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { + @Override public void onComplete(java.util.List o) { getAllOrganizations_result result = new getAllOrganizations_result(); result.success = o; @@ -5830,6 +6277,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -5857,10 +6305,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, getAllOrganizations_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { iface.getAllOrganizations(resultHandler); } @@ -5871,13 +6321,16 @@ public class SatelliteServer { super("getLocations"); } + @Override public getLocations_args getEmptyArgsInstance() { return new getLocations_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { + @Override public void onComplete(java.util.List o) { getLocations_result result = new getLocations_result(); result.success = o; @@ -5891,6 +6344,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -5918,10 +6372,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, getLocations_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { iface.getLocations(resultHandler); } @@ -5932,13 +6388,16 @@ public class SatelliteServer { super("getStatus"); } + @Override public getStatus_args getEmptyArgsInstance() { return new getStatus_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(SatelliteStatus o) { getStatus_result result = new getStatus_result(); result.success = o; @@ -5952,6 +6411,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -5979,10 +6439,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, getStatus_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.getStatus(resultHandler); } @@ -5993,13 +6455,16 @@ public class SatelliteServer { super("getImageList"); } + @Override public getImageList_args getEmptyArgsInstance() { return new getImageList_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { + @Override public void onComplete(java.util.List o) { getImageList_result result = new getImageList_result(); result.success = o; @@ -6013,6 +6478,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -6048,10 +6514,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, getImageList_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { iface.getImageList(args.userToken, args.tagSearch, args.page,resultHandler); } @@ -6062,13 +6530,16 @@ public class SatelliteServer { super("getImageDetails"); } + @Override public getImageDetails_args getEmptyArgsInstance() { return new getImageDetails_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(ImageDetailsRead o) { getImageDetails_result result = new getImageDetails_result(); result.success = o; @@ -6082,6 +6553,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -6121,10 +6593,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, getImageDetails_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.getImageDetails(args.userToken, args.imageBaseId,resultHandler); } @@ -6135,13 +6609,16 @@ public class SatelliteServer { super("createImage"); } + @Override public createImage_args getEmptyArgsInstance() { return new createImage_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(java.lang.String o) { createImage_result result = new createImage_result(); result.success = o; @@ -6155,6 +6632,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -6190,10 +6668,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, createImage_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.createImage(args.userToken, args.imageName,resultHandler); } @@ -6204,13 +6684,16 @@ public class SatelliteServer { super("updateImageBase"); } + @Override public updateImageBase_args getEmptyArgsInstance() { return new updateImageBase_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(Void o) { updateImageBase_result result = new updateImageBase_result(); try { @@ -6223,6 +6706,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -6262,10 +6746,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, updateImageBase_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.updateImageBase(args.userToken, args.imageBaseId, args.image,resultHandler); } @@ -6276,13 +6762,16 @@ public class SatelliteServer { super("updateImageVersion"); } + @Override public updateImageVersion_args getEmptyArgsInstance() { return new updateImageVersion_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(Void o) { updateImageVersion_result result = new updateImageVersion_result(); try { @@ -6295,6 +6784,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -6334,10 +6824,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, updateImageVersion_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.updateImageVersion(args.userToken, args.imageVersionId, args.image,resultHandler); } @@ -6348,13 +6840,16 @@ public class SatelliteServer { super("deleteImageVersion"); } + @Override public deleteImageVersion_args getEmptyArgsInstance() { return new deleteImageVersion_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(Void o) { deleteImageVersion_result result = new deleteImageVersion_result(); try { @@ -6367,6 +6862,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -6406,10 +6902,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, deleteImageVersion_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.deleteImageVersion(args.userToken, args.imageVersionId,resultHandler); } @@ -6420,13 +6918,16 @@ public class SatelliteServer { super("deleteImageBase"); } + @Override public deleteImageBase_args getEmptyArgsInstance() { return new deleteImageBase_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(Void o) { deleteImageBase_result result = new deleteImageBase_result(); try { @@ -6439,6 +6940,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -6478,10 +6980,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, deleteImageBase_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.deleteImageBase(args.userToken, args.imageBaseId,resultHandler); } @@ -6492,13 +6996,16 @@ public class SatelliteServer { super("writeImagePermissions"); } + @Override public writeImagePermissions_args getEmptyArgsInstance() { return new writeImagePermissions_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(Void o) { writeImagePermissions_result result = new writeImagePermissions_result(); try { @@ -6511,6 +7018,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -6550,10 +7058,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, writeImagePermissions_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.writeImagePermissions(args.userToken, args.imageBaseId, args.permissions,resultHandler); } @@ -6564,13 +7074,16 @@ public class SatelliteServer { super("getImagePermissions"); } + @Override public getImagePermissions_args getEmptyArgsInstance() { return new getImagePermissions_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { + @Override public void onComplete(java.util.Map o) { getImagePermissions_result result = new getImagePermissions_result(); result.success = o; @@ -6584,6 +7097,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -6623,10 +7137,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, getImagePermissions_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { iface.getImagePermissions(args.userToken, args.imageBaseId,resultHandler); } @@ -6637,13 +7153,16 @@ public class SatelliteServer { super("setImageOwner"); } + @Override public setImageOwner_args getEmptyArgsInstance() { return new setImageOwner_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(Void o) { setImageOwner_result result = new setImageOwner_result(); try { @@ -6656,6 +7175,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -6695,86 +7215,94 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } - public void start(I iface, setImageOwner_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.setImageOwner(args.userToken, args.imageBaseId, args.newOwnerId,resultHandler); - } - } - - public static class setImageVersionExpiry extends org.apache.thrift.AsyncProcessFunction { - public setImageVersionExpiry() { - super("setImageVersionExpiry"); - } - - public setImageVersionExpiry_args getEmptyArgsInstance() { - return new setImageVersionExpiry_args(); - } - - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { - final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(Void o) { - setImageVersionExpiry_result result = new setImageVersionExpiry_result(); - try { - fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); - } catch (org.apache.thrift.transport.TTransportException e) { - _LOGGER.error("TTransportException writing to internal frame buffer", e); - fb.close(); - } catch (java.lang.Exception e) { - _LOGGER.error("Exception writing to internal frame buffer", e); - onError(e); - } - } - public void onError(java.lang.Exception e) { - byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; - org.apache.thrift.TSerializable msg; - setImageVersionExpiry_result result = new setImageVersionExpiry_result(); - if (e instanceof TAuthorizationException) { - result.authError = (TAuthorizationException) e; - result.setAuthErrorIsSet(true); - msg = result; - } else if (e instanceof TNotFoundException) { - result.notFound = (TNotFoundException) e; - result.setNotFoundIsSet(true); - msg = result; - } else if (e instanceof TInvocationException) { - result.serverError = (TInvocationException) e; - result.setServerErrorIsSet(true); - msg = result; - } else if (e instanceof TInvalidDateParam) { - result.dateError = (TInvalidDateParam) e; - result.setDateErrorIsSet(true); - msg = result; - } else if (e instanceof org.apache.thrift.transport.TTransportException) { - _LOGGER.error("TTransportException inside handler", e); - fb.close(); - return; - } else if (e instanceof org.apache.thrift.TApplicationException) { - _LOGGER.error("TApplicationException inside handler", e); - msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; - msg = (org.apache.thrift.TApplicationException)e; - } else { - _LOGGER.error("Exception inside handler", e); - msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; - msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); - } - try { - fcall.sendResponse(fb,msg,msgType,seqid); - } catch (java.lang.Exception ex) { - _LOGGER.error("Exception writing to internal frame buffer", ex); - fb.close(); - } - } - }; - } - - protected boolean isOneway() { - return false; - } - + @Override + public void start(I iface, setImageOwner_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.setImageOwner(args.userToken, args.imageBaseId, args.newOwnerId,resultHandler); + } + } + + public static class setImageVersionExpiry extends org.apache.thrift.AsyncProcessFunction { + public setImageVersionExpiry() { + super("setImageVersionExpiry"); + } + + @Override + public setImageVersionExpiry_args getEmptyArgsInstance() { + return new setImageVersionExpiry_args(); + } + + @Override + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + final org.apache.thrift.AsyncProcessFunction fcall = this; + return new org.apache.thrift.async.AsyncMethodCallback() { + @Override + public void onComplete(Void o) { + setImageVersionExpiry_result result = new setImageVersionExpiry_result(); + try { + fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); + } catch (org.apache.thrift.transport.TTransportException e) { + _LOGGER.error("TTransportException writing to internal frame buffer", e); + fb.close(); + } catch (java.lang.Exception e) { + _LOGGER.error("Exception writing to internal frame buffer", e); + onError(e); + } + } + @Override + public void onError(java.lang.Exception e) { + byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; + org.apache.thrift.TSerializable msg; + setImageVersionExpiry_result result = new setImageVersionExpiry_result(); + if (e instanceof TAuthorizationException) { + result.authError = (TAuthorizationException) e; + result.setAuthErrorIsSet(true); + msg = result; + } else if (e instanceof TNotFoundException) { + result.notFound = (TNotFoundException) e; + result.setNotFoundIsSet(true); + msg = result; + } else if (e instanceof TInvocationException) { + result.serverError = (TInvocationException) e; + result.setServerErrorIsSet(true); + msg = result; + } else if (e instanceof TInvalidDateParam) { + result.dateError = (TInvalidDateParam) e; + result.setDateErrorIsSet(true); + msg = result; + } else if (e instanceof org.apache.thrift.transport.TTransportException) { + _LOGGER.error("TTransportException inside handler", e); + fb.close(); + return; + } else if (e instanceof org.apache.thrift.TApplicationException) { + _LOGGER.error("TApplicationException inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = (org.apache.thrift.TApplicationException)e; + } else { + _LOGGER.error("Exception inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); + } + try { + fcall.sendResponse(fb,msg,msgType,seqid); + } catch (java.lang.Exception ex) { + _LOGGER.error("Exception writing to internal frame buffer", ex); + fb.close(); + } + } + }; + } + + @Override + protected boolean isOneway() { + return false; + } + + @Override public void start(I iface, setImageVersionExpiry_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.setImageVersionExpiry(args.userToken, args.imageBaseId, args.expireTime,resultHandler); } @@ -6785,13 +7313,16 @@ public class SatelliteServer { super("getImageVersionVirtConfig"); } + @Override public getImageVersionVirtConfig_args getEmptyArgsInstance() { return new getImageVersionVirtConfig_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(java.nio.ByteBuffer o) { getImageVersionVirtConfig_result result = new getImageVersionVirtConfig_result(); result.success = o; @@ -6805,6 +7336,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -6844,10 +7376,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, getImageVersionVirtConfig_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.getImageVersionVirtConfig(args.userToken, args.imageVersionId,resultHandler); } @@ -6858,13 +7392,16 @@ public class SatelliteServer { super("setImageVersionVirtConfig"); } + @Override public setImageVersionVirtConfig_args getEmptyArgsInstance() { return new setImageVersionVirtConfig_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(Void o) { setImageVersionVirtConfig_result result = new setImageVersionVirtConfig_result(); try { @@ -6877,6 +7414,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -6916,10 +7454,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, setImageVersionVirtConfig_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.setImageVersionVirtConfig(args.userToken, args.imageVersionId, args.meta,resultHandler); } @@ -6930,13 +7470,16 @@ public class SatelliteServer { super("requestImageReplication"); } + @Override public requestImageReplication_args getEmptyArgsInstance() { return new requestImageReplication_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(java.lang.String o) { requestImageReplication_result result = new requestImageReplication_result(); result.success = o; @@ -6950,6 +7493,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -6989,10 +7533,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, requestImageReplication_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.requestImageReplication(args.userToken, args.imageVersionId,resultHandler); } @@ -7003,13 +7549,16 @@ public class SatelliteServer { super("publishImageVersion"); } + @Override public publishImageVersion_args getEmptyArgsInstance() { return new publishImageVersion_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(java.lang.String o) { publishImageVersion_result result = new publishImageVersion_result(); result.success = o; @@ -7023,6 +7572,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -7066,10 +7616,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, publishImageVersion_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.publishImageVersion(args.userToken, args.imageVersionId,resultHandler); } @@ -7080,13 +7632,16 @@ public class SatelliteServer { super("createLecture"); } + @Override public createLecture_args getEmptyArgsInstance() { return new createLecture_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(java.lang.String o) { createLecture_result result = new createLecture_result(); result.success = o; @@ -7100,6 +7655,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -7143,10 +7699,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, createLecture_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.createLecture(args.userToken, args.lecture,resultHandler); } @@ -7157,13 +7715,16 @@ public class SatelliteServer { super("updateLecture"); } + @Override public updateLecture_args getEmptyArgsInstance() { return new updateLecture_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(Void o) { updateLecture_result result = new updateLecture_result(); try { @@ -7176,6 +7737,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -7219,10 +7781,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, updateLecture_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.updateLecture(args.userToken, args.lectureId, args.lecture,resultHandler); } @@ -7233,13 +7797,16 @@ public class SatelliteServer { super("getLectureList"); } + @Override public getLectureList_args getEmptyArgsInstance() { return new getLectureList_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { + @Override public void onComplete(java.util.List o) { getLectureList_result result = new getLectureList_result(); result.success = o; @@ -7253,6 +7820,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -7288,10 +7856,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, getLectureList_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { iface.getLectureList(args.userToken, args.page,resultHandler); } @@ -7302,13 +7872,16 @@ public class SatelliteServer { super("getLectureDetails"); } + @Override public getLectureDetails_args getEmptyArgsInstance() { return new getLectureDetails_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(LectureRead o) { getLectureDetails_result result = new getLectureDetails_result(); result.success = o; @@ -7322,6 +7895,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -7361,10 +7935,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, getLectureDetails_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.getLectureDetails(args.userToken, args.lectureId,resultHandler); } @@ -7375,13 +7951,16 @@ public class SatelliteServer { super("deleteLecture"); } + @Override public deleteLecture_args getEmptyArgsInstance() { return new deleteLecture_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(Void o) { deleteLecture_result result = new deleteLecture_result(); try { @@ -7394,6 +7973,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -7433,10 +8013,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, deleteLecture_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.deleteLecture(args.userToken, args.lectureId,resultHandler); } @@ -7447,13 +8029,16 @@ public class SatelliteServer { super("writeLecturePermissions"); } + @Override public writeLecturePermissions_args getEmptyArgsInstance() { return new writeLecturePermissions_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(Void o) { writeLecturePermissions_result result = new writeLecturePermissions_result(); try { @@ -7466,6 +8051,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -7505,10 +8091,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, writeLecturePermissions_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.writeLecturePermissions(args.userToken, args.lectureId, args.permissions,resultHandler); } @@ -7519,13 +8107,16 @@ public class SatelliteServer { super("getLecturePermissions"); } + @Override public getLecturePermissions_args getEmptyArgsInstance() { return new getLecturePermissions_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { + @Override public void onComplete(java.util.Map o) { getLecturePermissions_result result = new getLecturePermissions_result(); result.success = o; @@ -7539,6 +8130,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -7578,10 +8170,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, getLecturePermissions_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { iface.getLecturePermissions(args.userToken, args.lectureId,resultHandler); } @@ -7592,13 +8186,16 @@ public class SatelliteServer { super("setLectureOwner"); } + @Override public setLectureOwner_args getEmptyArgsInstance() { return new setLectureOwner_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(Void o) { setLectureOwner_result result = new setLectureOwner_result(); try { @@ -7611,6 +8208,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -7650,10 +8248,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, setLectureOwner_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.setLectureOwner(args.userToken, args.lectureId, args.newOwnerId,resultHandler); } @@ -7664,13 +8264,16 @@ public class SatelliteServer { super("getPredefinedData"); } + @Override public getPredefinedData_args getEmptyArgsInstance() { return new getPredefinedData_args(); } + @Override public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { + @Override public void onComplete(PredefinedData o) { getPredefinedData_result result = new getPredefinedData_result(); result.success = o; @@ -7684,6 +8287,7 @@ public class SatelliteServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -7719,10 +8323,12 @@ public class SatelliteServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, getPredefinedData_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.getPredefinedData(args.userToken,resultHandler); } @@ -7730,6 +8336,7 @@ public class SatelliteServer { } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getVersion_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getVersion_args"); @@ -7791,10 +8398,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -7831,6 +8440,7 @@ public class SatelliteServer { this.clientVersion = other.clientVersion; } + @Override public getVersion_args deepCopy() { return new getVersion_args(this); } @@ -7864,6 +8474,7 @@ public class SatelliteServer { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __CLIENTVERSION_ISSET_ID, value); } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case CLIENT_VERSION: @@ -7878,6 +8489,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case CLIENT_VERSION: @@ -7888,6 +8500,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -7956,14 +8569,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -8004,6 +8620,7 @@ public class SatelliteServer { } private static class getVersion_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getVersion_argsStandardScheme getScheme() { return new getVersion_argsStandardScheme(); } @@ -8011,6 +8628,7 @@ public class SatelliteServer { private static class getVersion_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getVersion_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -8040,6 +8658,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getVersion_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -8054,6 +8673,7 @@ public class SatelliteServer { } private static class getVersion_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getVersion_argsTupleScheme getScheme() { return new getVersion_argsTupleScheme(); } @@ -8090,6 +8710,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getVersion_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getVersion_result"); @@ -8151,10 +8772,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -8191,6 +8814,7 @@ public class SatelliteServer { this.success = other.success; } + @Override public getVersion_result deepCopy() { return new getVersion_result(this); } @@ -8224,6 +8848,7 @@ public class SatelliteServer { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -8238,6 +8863,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -8248,6 +8874,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -8316,10 +8943,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -8364,6 +8993,7 @@ public class SatelliteServer { } private static class getVersion_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getVersion_resultStandardScheme getScheme() { return new getVersion_resultStandardScheme(); } @@ -8371,6 +9001,7 @@ public class SatelliteServer { private static class getVersion_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getVersion_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -8400,6 +9031,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getVersion_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -8416,6 +9048,7 @@ public class SatelliteServer { } private static class getVersion_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getVersion_resultTupleScheme getScheme() { return new getVersion_resultTupleScheme(); } @@ -8452,6 +9085,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getSupportedFeatures_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getSupportedFeatures_args"); @@ -8509,10 +9143,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -8533,6 +9169,7 @@ public class SatelliteServer { public getSupportedFeatures_args(getSupportedFeatures_args other) { } + @Override public getSupportedFeatures_args deepCopy() { return new getSupportedFeatures_args(this); } @@ -8541,12 +9178,14 @@ public class SatelliteServer { public void clear() { } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { } } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { } @@ -8554,6 +9193,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -8599,14 +9239,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -8642,6 +9285,7 @@ public class SatelliteServer { } private static class getSupportedFeatures_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getSupportedFeatures_argsStandardScheme getScheme() { return new getSupportedFeatures_argsStandardScheme(); } @@ -8649,6 +9293,7 @@ public class SatelliteServer { private static class getSupportedFeatures_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getSupportedFeatures_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -8670,6 +9315,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getSupportedFeatures_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -8681,6 +9327,7 @@ public class SatelliteServer { } private static class getSupportedFeatures_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getSupportedFeatures_argsTupleScheme getScheme() { return new getSupportedFeatures_argsTupleScheme(); } @@ -8704,6 +9351,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getSupportedFeatures_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getSupportedFeatures_result"); @@ -8765,10 +9413,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -8803,6 +9453,7 @@ public class SatelliteServer { } } + @Override public getSupportedFeatures_result deepCopy() { return new getSupportedFeatures_result(this); } @@ -8837,6 +9488,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -8851,6 +9503,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -8861,6 +9514,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -8931,10 +9585,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -8981,6 +9637,7 @@ public class SatelliteServer { } private static class getSupportedFeatures_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getSupportedFeatures_resultStandardScheme getScheme() { return new getSupportedFeatures_resultStandardScheme(); } @@ -8988,6 +9645,7 @@ public class SatelliteServer { private static class getSupportedFeatures_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getSupportedFeatures_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -9017,6 +9675,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getSupportedFeatures_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -9033,6 +9692,7 @@ public class SatelliteServer { } private static class getSupportedFeatures_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getSupportedFeatures_resultTupleScheme getScheme() { return new getSupportedFeatures_resultTupleScheme(); } @@ -9069,6 +9729,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getConfiguration_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getConfiguration_args"); @@ -9126,10 +9787,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -9150,6 +9813,7 @@ public class SatelliteServer { public getConfiguration_args(getConfiguration_args other) { } + @Override public getConfiguration_args deepCopy() { return new getConfiguration_args(this); } @@ -9158,12 +9822,14 @@ public class SatelliteServer { public void clear() { } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { } } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { } @@ -9171,6 +9837,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -9216,14 +9883,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -9259,6 +9929,7 @@ public class SatelliteServer { } private static class getConfiguration_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getConfiguration_argsStandardScheme getScheme() { return new getConfiguration_argsStandardScheme(); } @@ -9266,6 +9937,7 @@ public class SatelliteServer { private static class getConfiguration_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getConfiguration_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -9287,6 +9959,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getConfiguration_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -9298,6 +9971,7 @@ public class SatelliteServer { } private static class getConfiguration_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getConfiguration_argsTupleScheme getScheme() { return new getConfiguration_argsTupleScheme(); } @@ -9321,6 +9995,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getConfiguration_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getConfiguration_result"); @@ -9382,10 +10057,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -9420,6 +10097,7 @@ public class SatelliteServer { } } + @Override public getConfiguration_result deepCopy() { return new getConfiguration_result(this); } @@ -9454,6 +10132,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -9468,6 +10147,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -9478,6 +10158,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -9548,10 +10229,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -9601,6 +10284,7 @@ public class SatelliteServer { } private static class getConfiguration_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getConfiguration_resultStandardScheme getScheme() { return new getConfiguration_resultStandardScheme(); } @@ -9608,6 +10292,7 @@ public class SatelliteServer { private static class getConfiguration_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getConfiguration_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -9638,6 +10323,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getConfiguration_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -9654,6 +10340,7 @@ public class SatelliteServer { } private static class getConfiguration_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getConfiguration_resultTupleScheme getScheme() { return new getConfiguration_resultTupleScheme(); } @@ -9691,6 +10378,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class requestImageVersionUpload_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("requestImageVersionUpload_args"); @@ -9772,10 +10460,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -9842,6 +10532,7 @@ public class SatelliteServer { } } + @Override public requestImageVersionUpload_args deepCopy() { return new requestImageVersionUpload_args(this); } @@ -10004,6 +10695,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -10054,6 +10746,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -10076,6 +10769,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -10244,14 +10938,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -10324,6 +11021,7 @@ public class SatelliteServer { } private static class requestImageVersionUpload_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public requestImageVersionUpload_argsStandardScheme getScheme() { return new requestImageVersionUpload_argsStandardScheme(); } @@ -10331,6 +11029,7 @@ public class SatelliteServer { private static class requestImageVersionUpload_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, requestImageVersionUpload_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -10402,6 +11101,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, requestImageVersionUpload_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -10443,6 +11143,7 @@ public class SatelliteServer { } private static class requestImageVersionUpload_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public requestImageVersionUpload_argsTupleScheme getScheme() { return new requestImageVersionUpload_argsTupleScheme(); } @@ -10534,6 +11235,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class requestImageVersionUpload_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("requestImageVersionUpload_result"); @@ -10615,10 +11317,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -10681,6 +11385,7 @@ public class SatelliteServer { } } + @Override public requestImageVersionUpload_result deepCopy() { return new requestImageVersionUpload_result(this); } @@ -10819,6 +11524,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -10865,6 +11571,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -10887,6 +11594,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -11057,10 +11765,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -11142,6 +11852,7 @@ public class SatelliteServer { } private static class requestImageVersionUpload_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public requestImageVersionUpload_resultStandardScheme getScheme() { return new requestImageVersionUpload_resultStandardScheme(); } @@ -11149,6 +11860,7 @@ public class SatelliteServer { private static class requestImageVersionUpload_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, requestImageVersionUpload_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -11215,6 +11927,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, requestImageVersionUpload_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -11251,6 +11964,7 @@ public class SatelliteServer { } private static class requestImageVersionUpload_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public requestImageVersionUpload_resultTupleScheme getScheme() { return new requestImageVersionUpload_resultTupleScheme(); } @@ -11332,6 +12046,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class updateBlockHashes_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("updateBlockHashes_args"); @@ -11403,10 +12118,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -11457,6 +12174,7 @@ public class SatelliteServer { } } + @Override public updateBlockHashes_args deepCopy() { return new updateBlockHashes_args(this); } @@ -11559,6 +12277,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case UPLOAD_TOKEN: @@ -11589,6 +12308,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case UPLOAD_TOKEN: @@ -11605,6 +12325,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -11725,14 +12446,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -11791,6 +12515,7 @@ public class SatelliteServer { } private static class updateBlockHashes_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public updateBlockHashes_argsStandardScheme getScheme() { return new updateBlockHashes_argsStandardScheme(); } @@ -11798,6 +12523,7 @@ public class SatelliteServer { private static class updateBlockHashes_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, updateBlockHashes_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -11853,6 +12579,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, updateBlockHashes_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -11886,6 +12613,7 @@ public class SatelliteServer { } private static class updateBlockHashes_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public updateBlockHashes_argsTupleScheme getScheme() { return new updateBlockHashes_argsTupleScheme(); } @@ -11957,6 +12685,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class updateBlockHashes_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("updateBlockHashes_result"); @@ -12018,10 +12747,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -12056,6 +12787,7 @@ public class SatelliteServer { } } + @Override public updateBlockHashes_result deepCopy() { return new updateBlockHashes_result(this); } @@ -12090,6 +12822,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case EX1: @@ -12104,6 +12837,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case EX1: @@ -12114,6 +12848,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -12184,10 +12919,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -12234,6 +12971,7 @@ public class SatelliteServer { } private static class updateBlockHashes_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public updateBlockHashes_resultStandardScheme getScheme() { return new updateBlockHashes_resultStandardScheme(); } @@ -12241,6 +12979,7 @@ public class SatelliteServer { private static class updateBlockHashes_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, updateBlockHashes_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -12271,6 +13010,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, updateBlockHashes_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -12287,6 +13027,7 @@ public class SatelliteServer { } private static class updateBlockHashes_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public updateBlockHashes_resultTupleScheme getScheme() { return new updateBlockHashes_resultTupleScheme(); } @@ -12324,6 +13065,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class setUploadOptions_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("setUploadOptions_args"); @@ -12395,10 +13137,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -12447,6 +13191,7 @@ public class SatelliteServer { } } + @Override public setUploadOptions_args deepCopy() { return new setUploadOptions_args(this); } @@ -12533,6 +13278,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -12563,6 +13309,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -12579,6 +13326,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -12699,14 +13447,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -12768,6 +13519,7 @@ public class SatelliteServer { } private static class setUploadOptions_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setUploadOptions_argsStandardScheme getScheme() { return new setUploadOptions_argsStandardScheme(); } @@ -12775,6 +13527,7 @@ public class SatelliteServer { private static class setUploadOptions_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, setUploadOptions_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -12821,6 +13574,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, setUploadOptions_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -12847,6 +13601,7 @@ public class SatelliteServer { } private static class setUploadOptions_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setUploadOptions_argsTupleScheme getScheme() { return new setUploadOptions_argsTupleScheme(); } @@ -12904,6 +13659,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class setUploadOptions_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("setUploadOptions_result"); @@ -12975,10 +13731,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -13027,6 +13785,7 @@ public class SatelliteServer { } } + @Override public setUploadOptions_result deepCopy() { return new setUploadOptions_result(this); } @@ -13113,6 +13872,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -13143,6 +13903,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -13159,6 +13920,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -13279,10 +14041,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -13348,6 +14112,7 @@ public class SatelliteServer { } private static class setUploadOptions_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setUploadOptions_resultStandardScheme getScheme() { return new setUploadOptions_resultStandardScheme(); } @@ -13355,6 +14120,7 @@ public class SatelliteServer { private static class setUploadOptions_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, setUploadOptions_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -13403,6 +14169,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, setUploadOptions_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -13429,6 +14196,7 @@ public class SatelliteServer { } private static class setUploadOptions_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setUploadOptions_resultTupleScheme getScheme() { return new setUploadOptions_resultTupleScheme(); } @@ -13488,6 +14256,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class cancelUpload_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("cancelUpload_args"); @@ -13549,10 +14318,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -13587,6 +14358,7 @@ public class SatelliteServer { } } + @Override public cancelUpload_args deepCopy() { return new cancelUpload_args(this); } @@ -13621,6 +14393,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case UPLOAD_TOKEN: @@ -13635,6 +14408,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case UPLOAD_TOKEN: @@ -13645,6 +14419,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -13715,14 +14490,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -13765,6 +14543,7 @@ public class SatelliteServer { } private static class cancelUpload_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public cancelUpload_argsStandardScheme getScheme() { return new cancelUpload_argsStandardScheme(); } @@ -13772,6 +14551,7 @@ public class SatelliteServer { private static class cancelUpload_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, cancelUpload_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -13801,6 +14581,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, cancelUpload_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -13817,6 +14598,7 @@ public class SatelliteServer { } private static class cancelUpload_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public cancelUpload_argsTupleScheme getScheme() { return new cancelUpload_argsTupleScheme(); } @@ -13853,6 +14635,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class cancelUpload_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("cancelUpload_result"); @@ -13914,10 +14697,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -13952,6 +14737,7 @@ public class SatelliteServer { } } + @Override public cancelUpload_result deepCopy() { return new cancelUpload_result(this); } @@ -13986,6 +14772,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case EX1: @@ -14000,6 +14787,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case EX1: @@ -14010,6 +14798,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -14080,10 +14869,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -14130,6 +14921,7 @@ public class SatelliteServer { } private static class cancelUpload_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public cancelUpload_resultStandardScheme getScheme() { return new cancelUpload_resultStandardScheme(); } @@ -14137,6 +14929,7 @@ public class SatelliteServer { private static class cancelUpload_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, cancelUpload_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -14167,6 +14960,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, cancelUpload_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -14183,6 +14977,7 @@ public class SatelliteServer { } private static class cancelUpload_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public cancelUpload_resultTupleScheme getScheme() { return new cancelUpload_resultTupleScheme(); } @@ -14220,6 +15015,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class queryUploadStatus_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("queryUploadStatus_args"); @@ -14281,10 +15077,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -14319,6 +15117,7 @@ public class SatelliteServer { } } + @Override public queryUploadStatus_args deepCopy() { return new queryUploadStatus_args(this); } @@ -14353,6 +15152,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case UPLOAD_TOKEN: @@ -14367,6 +15167,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case UPLOAD_TOKEN: @@ -14377,6 +15178,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -14447,14 +15249,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -14497,6 +15302,7 @@ public class SatelliteServer { } private static class queryUploadStatus_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public queryUploadStatus_argsStandardScheme getScheme() { return new queryUploadStatus_argsStandardScheme(); } @@ -14504,6 +15310,7 @@ public class SatelliteServer { private static class queryUploadStatus_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, queryUploadStatus_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -14533,6 +15340,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, queryUploadStatus_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -14549,6 +15357,7 @@ public class SatelliteServer { } private static class queryUploadStatus_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public queryUploadStatus_argsTupleScheme getScheme() { return new queryUploadStatus_argsTupleScheme(); } @@ -14585,6 +15394,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class queryUploadStatus_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("queryUploadStatus_result"); @@ -14651,10 +15461,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -14696,6 +15508,7 @@ public class SatelliteServer { } } + @Override public queryUploadStatus_result deepCopy() { return new queryUploadStatus_result(this); } @@ -14756,6 +15569,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -14778,6 +15592,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -14791,6 +15606,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -14886,10 +15702,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -14947,6 +15765,7 @@ public class SatelliteServer { } private static class queryUploadStatus_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public queryUploadStatus_resultStandardScheme getScheme() { return new queryUploadStatus_resultStandardScheme(); } @@ -14954,6 +15773,7 @@ public class SatelliteServer { private static class queryUploadStatus_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, queryUploadStatus_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -14993,6 +15813,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, queryUploadStatus_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -15014,6 +15835,7 @@ public class SatelliteServer { } private static class queryUploadStatus_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public queryUploadStatus_resultTupleScheme getScheme() { return new queryUploadStatus_resultTupleScheme(); } @@ -15062,6 +15884,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class requestDownload_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("requestDownload_args"); @@ -15128,10 +15951,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -15173,6 +15998,7 @@ public class SatelliteServer { } } + @Override public requestDownload_args deepCopy() { return new requestDownload_args(this); } @@ -15233,6 +16059,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -15255,6 +16082,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -15268,6 +16096,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -15363,14 +16192,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -15421,6 +16253,7 @@ public class SatelliteServer { } private static class requestDownload_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public requestDownload_argsStandardScheme getScheme() { return new requestDownload_argsStandardScheme(); } @@ -15428,6 +16261,7 @@ public class SatelliteServer { private static class requestDownload_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, requestDownload_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -15465,6 +16299,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, requestDownload_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -15486,6 +16321,7 @@ public class SatelliteServer { } private static class requestDownload_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public requestDownload_argsTupleScheme getScheme() { return new requestDownload_argsTupleScheme(); } @@ -15532,6 +16368,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class requestDownload_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("requestDownload_result"); @@ -15613,10 +16450,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -15679,6 +16518,7 @@ public class SatelliteServer { } } + @Override public requestDownload_result deepCopy() { return new requestDownload_result(this); } @@ -15817,6 +16657,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -15863,6 +16704,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -15885,6 +16727,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -16055,10 +16898,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -16140,6 +16985,7 @@ public class SatelliteServer { } private static class requestDownload_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public requestDownload_resultStandardScheme getScheme() { return new requestDownload_resultStandardScheme(); } @@ -16147,6 +16993,7 @@ public class SatelliteServer { private static class requestDownload_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, requestDownload_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -16213,6 +17060,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, requestDownload_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -16249,6 +17097,7 @@ public class SatelliteServer { } private static class requestDownload_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public requestDownload_resultTupleScheme getScheme() { return new requestDownload_resultTupleScheme(); } @@ -16330,6 +17179,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class cancelDownload_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("cancelDownload_args"); @@ -16391,10 +17241,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -16429,6 +17281,7 @@ public class SatelliteServer { } } + @Override public cancelDownload_args deepCopy() { return new cancelDownload_args(this); } @@ -16463,6 +17316,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case DOWNLOAD_TOKEN: @@ -16477,6 +17331,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case DOWNLOAD_TOKEN: @@ -16487,6 +17342,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -16557,14 +17413,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -16607,6 +17466,7 @@ public class SatelliteServer { } private static class cancelDownload_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public cancelDownload_argsStandardScheme getScheme() { return new cancelDownload_argsStandardScheme(); } @@ -16614,6 +17474,7 @@ public class SatelliteServer { private static class cancelDownload_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, cancelDownload_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -16643,6 +17504,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, cancelDownload_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -16659,6 +17521,7 @@ public class SatelliteServer { } private static class cancelDownload_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public cancelDownload_argsTupleScheme getScheme() { return new cancelDownload_argsTupleScheme(); } @@ -16695,6 +17558,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class cancelDownload_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("cancelDownload_result"); @@ -16756,10 +17620,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -16794,6 +17660,7 @@ public class SatelliteServer { } } + @Override public cancelDownload_result deepCopy() { return new cancelDownload_result(this); } @@ -16828,6 +17695,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case EX1: @@ -16842,6 +17710,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case EX1: @@ -16852,6 +17721,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -16922,10 +17792,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -16972,6 +17844,7 @@ public class SatelliteServer { } private static class cancelDownload_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public cancelDownload_resultStandardScheme getScheme() { return new cancelDownload_resultStandardScheme(); } @@ -16979,6 +17852,7 @@ public class SatelliteServer { private static class cancelDownload_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, cancelDownload_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -17009,6 +17883,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, cancelDownload_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -17025,6 +17900,7 @@ public class SatelliteServer { } private static class cancelDownload_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public cancelDownload_resultTupleScheme getScheme() { return new cancelDownload_resultTupleScheme(); } @@ -17062,6 +17938,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class isAuthenticated_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("isAuthenticated_args"); @@ -17123,10 +18000,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -17161,6 +18040,7 @@ public class SatelliteServer { } } + @Override public isAuthenticated_args deepCopy() { return new isAuthenticated_args(this); } @@ -17195,6 +18075,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -17209,6 +18090,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -17219,6 +18101,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -17289,14 +18172,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -17339,6 +18225,7 @@ public class SatelliteServer { } private static class isAuthenticated_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public isAuthenticated_argsStandardScheme getScheme() { return new isAuthenticated_argsStandardScheme(); } @@ -17346,6 +18233,7 @@ public class SatelliteServer { private static class isAuthenticated_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, isAuthenticated_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -17375,6 +18263,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, isAuthenticated_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -17391,6 +18280,7 @@ public class SatelliteServer { } private static class isAuthenticated_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public isAuthenticated_argsTupleScheme getScheme() { return new isAuthenticated_argsTupleScheme(); } @@ -17427,6 +18317,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class isAuthenticated_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("isAuthenticated_result"); @@ -17493,10 +18384,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -17538,6 +18431,7 @@ public class SatelliteServer { } } + @Override public isAuthenticated_result deepCopy() { return new isAuthenticated_result(this); } @@ -17598,6 +18492,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case AUTH_ERROR: @@ -17620,6 +18515,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case AUTH_ERROR: @@ -17633,6 +18529,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -17728,10 +18625,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -17786,6 +18685,7 @@ public class SatelliteServer { } private static class isAuthenticated_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public isAuthenticated_resultStandardScheme getScheme() { return new isAuthenticated_resultStandardScheme(); } @@ -17793,6 +18693,7 @@ public class SatelliteServer { private static class isAuthenticated_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, isAuthenticated_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -17832,6 +18733,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, isAuthenticated_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -17853,6 +18755,7 @@ public class SatelliteServer { } private static class isAuthenticated_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public isAuthenticated_resultTupleScheme getScheme() { return new isAuthenticated_resultTupleScheme(); } @@ -17901,6 +18804,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class whoami_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("whoami_args"); @@ -17962,10 +18866,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -18000,6 +18906,7 @@ public class SatelliteServer { } } + @Override public whoami_args deepCopy() { return new whoami_args(this); } @@ -18034,6 +18941,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -18048,6 +18956,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -18058,6 +18967,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -18128,14 +19038,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -18178,6 +19091,7 @@ public class SatelliteServer { } private static class whoami_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public whoami_argsStandardScheme getScheme() { return new whoami_argsStandardScheme(); } @@ -18185,6 +19099,7 @@ public class SatelliteServer { private static class whoami_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, whoami_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -18214,6 +19129,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, whoami_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -18230,6 +19146,7 @@ public class SatelliteServer { } private static class whoami_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public whoami_argsTupleScheme getScheme() { return new whoami_argsTupleScheme(); } @@ -18266,6 +19183,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class whoami_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("whoami_result"); @@ -18337,10 +19255,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -18389,6 +19309,7 @@ public class SatelliteServer { } } + @Override public whoami_result deepCopy() { return new whoami_result(this); } @@ -18475,6 +19396,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -18505,6 +19427,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -18521,6 +19444,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -18641,10 +19565,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -18710,6 +19636,7 @@ public class SatelliteServer { } private static class whoami_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public whoami_resultStandardScheme getScheme() { return new whoami_resultStandardScheme(); } @@ -18717,6 +19644,7 @@ public class SatelliteServer { private static class whoami_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, whoami_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -18765,6 +19693,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, whoami_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -18791,6 +19720,7 @@ public class SatelliteServer { } private static class whoami_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public whoami_resultTupleScheme getScheme() { return new whoami_resultTupleScheme(); } @@ -18850,6 +19780,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class invalidateSession_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("invalidateSession_args"); @@ -18911,10 +19842,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -18949,6 +19882,7 @@ public class SatelliteServer { } } + @Override public invalidateSession_args deepCopy() { return new invalidateSession_args(this); } @@ -18983,6 +19917,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -18997,6 +19932,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -19007,6 +19943,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -19077,14 +20014,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -19127,6 +20067,7 @@ public class SatelliteServer { } private static class invalidateSession_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public invalidateSession_argsStandardScheme getScheme() { return new invalidateSession_argsStandardScheme(); } @@ -19134,6 +20075,7 @@ public class SatelliteServer { private static class invalidateSession_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, invalidateSession_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -19163,6 +20105,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, invalidateSession_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -19179,6 +20122,7 @@ public class SatelliteServer { } private static class invalidateSession_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public invalidateSession_argsTupleScheme getScheme() { return new invalidateSession_argsTupleScheme(); } @@ -19215,6 +20159,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class invalidateSession_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("invalidateSession_result"); @@ -19276,10 +20221,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -19314,6 +20261,7 @@ public class SatelliteServer { } } + @Override public invalidateSession_result deepCopy() { return new invalidateSession_result(this); } @@ -19348,6 +20296,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case EX: @@ -19362,6 +20311,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case EX: @@ -19372,6 +20322,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -19442,10 +20393,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -19492,6 +20445,7 @@ public class SatelliteServer { } private static class invalidateSession_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public invalidateSession_resultStandardScheme getScheme() { return new invalidateSession_resultStandardScheme(); } @@ -19499,6 +20453,7 @@ public class SatelliteServer { private static class invalidateSession_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, invalidateSession_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -19529,6 +20484,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, invalidateSession_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -19545,6 +20501,7 @@ public class SatelliteServer { } private static class invalidateSession_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public invalidateSession_resultTupleScheme getScheme() { return new invalidateSession_resultTupleScheme(); } @@ -19582,6 +20539,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getUserList_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getUserList_args"); @@ -19648,10 +20606,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -19695,6 +20655,7 @@ public class SatelliteServer { this.page = other.page; } + @Override public getUserList_args deepCopy() { return new getUserList_args(this); } @@ -19754,6 +20715,7 @@ public class SatelliteServer { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __PAGE_ISSET_ID, value); } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -19776,6 +20738,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -19789,6 +20752,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -19882,14 +20846,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -19938,6 +20905,7 @@ public class SatelliteServer { } private static class getUserList_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getUserList_argsStandardScheme getScheme() { return new getUserList_argsStandardScheme(); } @@ -19945,6 +20913,7 @@ public class SatelliteServer { private static class getUserList_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getUserList_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -19982,6 +20951,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getUserList_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -20001,6 +20971,7 @@ public class SatelliteServer { } private static class getUserList_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getUserList_argsTupleScheme getScheme() { return new getUserList_argsTupleScheme(); } @@ -20047,6 +21018,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getUserList_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getUserList_result"); @@ -20118,10 +21090,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -20175,6 +21149,7 @@ public class SatelliteServer { } } + @Override public getUserList_result deepCopy() { return new getUserList_result(this); } @@ -20277,6 +21252,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -20307,6 +21283,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -20323,6 +21300,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -20443,10 +21421,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -20509,6 +21489,7 @@ public class SatelliteServer { } private static class getUserList_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getUserList_resultStandardScheme getScheme() { return new getUserList_resultStandardScheme(); } @@ -20516,6 +21497,7 @@ public class SatelliteServer { private static class getUserList_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getUserList_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -20574,6 +21556,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getUserList_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -20607,6 +21590,7 @@ public class SatelliteServer { } private static class getUserList_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getUserList_resultTupleScheme getScheme() { return new getUserList_resultTupleScheme(); } @@ -20681,6 +21665,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getUserConfig_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getUserConfig_args"); @@ -20742,10 +21727,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -20780,6 +21767,7 @@ public class SatelliteServer { } } + @Override public getUserConfig_args deepCopy() { return new getUserConfig_args(this); } @@ -20814,6 +21802,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -20828,6 +21817,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -20838,6 +21828,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -20908,14 +21899,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -20958,6 +21952,7 @@ public class SatelliteServer { } private static class getUserConfig_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getUserConfig_argsStandardScheme getScheme() { return new getUserConfig_argsStandardScheme(); } @@ -20965,6 +21960,7 @@ public class SatelliteServer { private static class getUserConfig_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getUserConfig_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -20994,6 +21990,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getUserConfig_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -21010,6 +22007,7 @@ public class SatelliteServer { } private static class getUserConfig_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getUserConfig_argsTupleScheme getScheme() { return new getUserConfig_argsTupleScheme(); } @@ -21046,6 +22044,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getUserConfig_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getUserConfig_result"); @@ -21117,10 +22116,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -21169,6 +22170,7 @@ public class SatelliteServer { } } + @Override public getUserConfig_result deepCopy() { return new getUserConfig_result(this); } @@ -21255,6 +22257,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -21285,6 +22288,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -21301,6 +22305,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -21421,10 +22426,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -21490,6 +22497,7 @@ public class SatelliteServer { } private static class getUserConfig_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getUserConfig_resultStandardScheme getScheme() { return new getUserConfig_resultStandardScheme(); } @@ -21497,6 +22505,7 @@ public class SatelliteServer { private static class getUserConfig_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getUserConfig_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -21545,6 +22554,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getUserConfig_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -21571,6 +22581,7 @@ public class SatelliteServer { } private static class getUserConfig_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getUserConfig_resultTupleScheme getScheme() { return new getUserConfig_resultTupleScheme(); } @@ -21630,6 +22641,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class setUserConfig_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("setUserConfig_args"); @@ -21696,10 +22708,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -21741,6 +22755,7 @@ public class SatelliteServer { } } + @Override public setUserConfig_args deepCopy() { return new setUserConfig_args(this); } @@ -21801,6 +22816,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -21823,6 +22839,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -21836,6 +22853,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -21931,14 +22949,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -21992,6 +23013,7 @@ public class SatelliteServer { } private static class setUserConfig_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setUserConfig_argsStandardScheme getScheme() { return new setUserConfig_argsStandardScheme(); } @@ -21999,6 +23021,7 @@ public class SatelliteServer { private static class setUserConfig_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, setUserConfig_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -22037,6 +23060,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, setUserConfig_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -22058,6 +23082,7 @@ public class SatelliteServer { } private static class setUserConfig_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setUserConfig_argsTupleScheme getScheme() { return new setUserConfig_argsTupleScheme(); } @@ -22105,6 +23130,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class setUserConfig_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("setUserConfig_result"); @@ -22171,10 +23197,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -22216,6 +23244,7 @@ public class SatelliteServer { } } + @Override public setUserConfig_result deepCopy() { return new setUserConfig_result(this); } @@ -22276,6 +23305,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case FAILURE: @@ -22298,6 +23328,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case FAILURE: @@ -22311,6 +23342,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -22406,10 +23438,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -22464,6 +23498,7 @@ public class SatelliteServer { } private static class setUserConfig_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setUserConfig_resultStandardScheme getScheme() { return new setUserConfig_resultStandardScheme(); } @@ -22471,6 +23506,7 @@ public class SatelliteServer { private static class setUserConfig_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, setUserConfig_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -22510,6 +23546,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, setUserConfig_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -22531,6 +23568,7 @@ public class SatelliteServer { } private static class setUserConfig_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setUserConfig_resultTupleScheme getScheme() { return new setUserConfig_resultTupleScheme(); } @@ -22579,6 +23617,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getOperatingSystems_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getOperatingSystems_args"); @@ -22636,10 +23675,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -22660,6 +23701,7 @@ public class SatelliteServer { public getOperatingSystems_args(getOperatingSystems_args other) { } + @Override public getOperatingSystems_args deepCopy() { return new getOperatingSystems_args(this); } @@ -22668,12 +23710,14 @@ public class SatelliteServer { public void clear() { } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { } } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { } @@ -22681,6 +23725,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -22726,14 +23771,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -22769,6 +23817,7 @@ public class SatelliteServer { } private static class getOperatingSystems_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getOperatingSystems_argsStandardScheme getScheme() { return new getOperatingSystems_argsStandardScheme(); } @@ -22776,6 +23825,7 @@ public class SatelliteServer { private static class getOperatingSystems_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getOperatingSystems_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -22797,6 +23847,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getOperatingSystems_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -22808,6 +23859,7 @@ public class SatelliteServer { } private static class getOperatingSystems_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getOperatingSystems_argsTupleScheme getScheme() { return new getOperatingSystems_argsTupleScheme(); } @@ -22831,6 +23883,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getOperatingSystems_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getOperatingSystems_result"); @@ -22892,10 +23945,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -22935,6 +23990,7 @@ public class SatelliteServer { } } + @Override public getOperatingSystems_result deepCopy() { return new getOperatingSystems_result(this); } @@ -22985,6 +24041,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -22999,6 +24056,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -23009,6 +24067,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -23079,10 +24138,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -23129,6 +24190,7 @@ public class SatelliteServer { } private static class getOperatingSystems_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getOperatingSystems_resultStandardScheme getScheme() { return new getOperatingSystems_resultStandardScheme(); } @@ -23136,6 +24198,7 @@ public class SatelliteServer { private static class getOperatingSystems_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getOperatingSystems_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -23176,6 +24239,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getOperatingSystems_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -23199,6 +24263,7 @@ public class SatelliteServer { } private static class getOperatingSystems_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getOperatingSystems_resultTupleScheme getScheme() { return new getOperatingSystems_resultTupleScheme(); } @@ -23251,6 +24316,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getVirtualizers_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getVirtualizers_args"); @@ -23308,10 +24374,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -23332,6 +24400,7 @@ public class SatelliteServer { public getVirtualizers_args(getVirtualizers_args other) { } + @Override public getVirtualizers_args deepCopy() { return new getVirtualizers_args(this); } @@ -23340,12 +24409,14 @@ public class SatelliteServer { public void clear() { } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { } } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { } @@ -23353,6 +24424,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -23398,14 +24470,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -23441,6 +24516,7 @@ public class SatelliteServer { } private static class getVirtualizers_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getVirtualizers_argsStandardScheme getScheme() { return new getVirtualizers_argsStandardScheme(); } @@ -23448,6 +24524,7 @@ public class SatelliteServer { private static class getVirtualizers_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getVirtualizers_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -23469,6 +24546,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getVirtualizers_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -23480,6 +24558,7 @@ public class SatelliteServer { } private static class getVirtualizers_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getVirtualizers_argsTupleScheme getScheme() { return new getVirtualizers_argsTupleScheme(); } @@ -23503,6 +24582,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getVirtualizers_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getVirtualizers_result"); @@ -23564,10 +24644,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -23607,6 +24689,7 @@ public class SatelliteServer { } } + @Override public getVirtualizers_result deepCopy() { return new getVirtualizers_result(this); } @@ -23657,6 +24740,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -23671,6 +24755,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -23681,6 +24766,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -23751,10 +24837,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -23801,6 +24889,7 @@ public class SatelliteServer { } private static class getVirtualizers_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getVirtualizers_resultStandardScheme getScheme() { return new getVirtualizers_resultStandardScheme(); } @@ -23808,6 +24897,7 @@ public class SatelliteServer { private static class getVirtualizers_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getVirtualizers_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -23848,6 +24938,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getVirtualizers_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -23871,6 +24962,7 @@ public class SatelliteServer { } private static class getVirtualizers_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getVirtualizers_resultTupleScheme getScheme() { return new getVirtualizers_resultTupleScheme(); } @@ -23923,6 +25015,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getAllOrganizations_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getAllOrganizations_args"); @@ -23980,10 +25073,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -24004,6 +25099,7 @@ public class SatelliteServer { public getAllOrganizations_args(getAllOrganizations_args other) { } + @Override public getAllOrganizations_args deepCopy() { return new getAllOrganizations_args(this); } @@ -24012,12 +25108,14 @@ public class SatelliteServer { public void clear() { } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { } } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { } @@ -24025,6 +25123,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -24070,14 +25169,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -24113,6 +25215,7 @@ public class SatelliteServer { } private static class getAllOrganizations_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getAllOrganizations_argsStandardScheme getScheme() { return new getAllOrganizations_argsStandardScheme(); } @@ -24120,6 +25223,7 @@ public class SatelliteServer { private static class getAllOrganizations_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getAllOrganizations_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -24141,6 +25245,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getAllOrganizations_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -24152,6 +25257,7 @@ public class SatelliteServer { } private static class getAllOrganizations_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getAllOrganizations_argsTupleScheme getScheme() { return new getAllOrganizations_argsTupleScheme(); } @@ -24175,6 +25281,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getAllOrganizations_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getAllOrganizations_result"); @@ -24236,10 +25343,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -24279,6 +25388,7 @@ public class SatelliteServer { } } + @Override public getAllOrganizations_result deepCopy() { return new getAllOrganizations_result(this); } @@ -24329,6 +25439,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -24343,6 +25454,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -24353,6 +25465,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -24423,10 +25536,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -24473,6 +25588,7 @@ public class SatelliteServer { } private static class getAllOrganizations_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getAllOrganizations_resultStandardScheme getScheme() { return new getAllOrganizations_resultStandardScheme(); } @@ -24480,6 +25596,7 @@ public class SatelliteServer { private static class getAllOrganizations_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getAllOrganizations_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -24520,6 +25637,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getAllOrganizations_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -24543,6 +25661,7 @@ public class SatelliteServer { } private static class getAllOrganizations_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getAllOrganizations_resultTupleScheme getScheme() { return new getAllOrganizations_resultTupleScheme(); } @@ -24595,6 +25714,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getLocations_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getLocations_args"); @@ -24652,10 +25772,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -24676,6 +25798,7 @@ public class SatelliteServer { public getLocations_args(getLocations_args other) { } + @Override public getLocations_args deepCopy() { return new getLocations_args(this); } @@ -24684,12 +25807,14 @@ public class SatelliteServer { public void clear() { } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { } } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { } @@ -24697,6 +25822,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -24742,14 +25868,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -24785,6 +25914,7 @@ public class SatelliteServer { } private static class getLocations_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getLocations_argsStandardScheme getScheme() { return new getLocations_argsStandardScheme(); } @@ -24792,6 +25922,7 @@ public class SatelliteServer { private static class getLocations_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getLocations_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -24813,6 +25944,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getLocations_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -24824,6 +25956,7 @@ public class SatelliteServer { } private static class getLocations_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getLocations_argsTupleScheme getScheme() { return new getLocations_argsTupleScheme(); } @@ -24847,6 +25980,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getLocations_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getLocations_result"); @@ -24908,10 +26042,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -24951,6 +26087,7 @@ public class SatelliteServer { } } + @Override public getLocations_result deepCopy() { return new getLocations_result(this); } @@ -25001,6 +26138,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -25015,6 +26153,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -25025,6 +26164,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -25095,10 +26235,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -25145,6 +26287,7 @@ public class SatelliteServer { } private static class getLocations_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getLocations_resultStandardScheme getScheme() { return new getLocations_resultStandardScheme(); } @@ -25152,6 +26295,7 @@ public class SatelliteServer { private static class getLocations_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getLocations_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -25192,6 +26336,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getLocations_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -25215,6 +26360,7 @@ public class SatelliteServer { } private static class getLocations_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getLocations_resultTupleScheme getScheme() { return new getLocations_resultTupleScheme(); } @@ -25267,6 +26413,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getStatus_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getStatus_args"); @@ -25324,10 +26471,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -25348,6 +26497,7 @@ public class SatelliteServer { public getStatus_args(getStatus_args other) { } + @Override public getStatus_args deepCopy() { return new getStatus_args(this); } @@ -25356,12 +26506,14 @@ public class SatelliteServer { public void clear() { } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { } } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { } @@ -25369,6 +26521,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -25414,14 +26567,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -25457,6 +26613,7 @@ public class SatelliteServer { } private static class getStatus_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getStatus_argsStandardScheme getScheme() { return new getStatus_argsStandardScheme(); } @@ -25464,6 +26621,7 @@ public class SatelliteServer { private static class getStatus_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getStatus_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -25485,6 +26643,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getStatus_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -25496,6 +26655,7 @@ public class SatelliteServer { } private static class getStatus_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getStatus_argsTupleScheme getScheme() { return new getStatus_argsTupleScheme(); } @@ -25519,6 +26679,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getStatus_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getStatus_result"); @@ -25580,10 +26741,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -25618,6 +26781,7 @@ public class SatelliteServer { } } + @Override public getStatus_result deepCopy() { return new getStatus_result(this); } @@ -25652,6 +26816,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -25666,6 +26831,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -25676,6 +26842,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -25746,10 +26913,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -25799,6 +26968,7 @@ public class SatelliteServer { } private static class getStatus_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getStatus_resultStandardScheme getScheme() { return new getStatus_resultStandardScheme(); } @@ -25806,6 +26976,7 @@ public class SatelliteServer { private static class getStatus_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getStatus_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -25836,6 +27007,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getStatus_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -25852,6 +27024,7 @@ public class SatelliteServer { } private static class getStatus_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getStatus_resultTupleScheme getScheme() { return new getStatus_resultTupleScheme(); } @@ -25889,6 +27062,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getImageList_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getImageList_args"); @@ -25960,10 +27134,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -26016,6 +27192,7 @@ public class SatelliteServer { this.page = other.page; } + @Override public getImageList_args deepCopy() { return new getImageList_args(this); } @@ -26117,6 +27294,7 @@ public class SatelliteServer { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __PAGE_ISSET_ID, value); } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -26147,6 +27325,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -26163,6 +27342,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -26281,14 +27461,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -26345,6 +27528,7 @@ public class SatelliteServer { } private static class getImageList_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getImageList_argsStandardScheme getScheme() { return new getImageList_argsStandardScheme(); } @@ -26352,6 +27536,7 @@ public class SatelliteServer { private static class getImageList_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getImageList_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -26407,6 +27592,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getImageList_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -26438,6 +27624,7 @@ public class SatelliteServer { } private static class getImageList_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getImageList_argsTupleScheme getScheme() { return new getImageList_argsTupleScheme(); } @@ -26509,6 +27696,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getImageList_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getImageList_result"); @@ -26580,10 +27768,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -26637,6 +27827,7 @@ public class SatelliteServer { } } + @Override public getImageList_result deepCopy() { return new getImageList_result(this); } @@ -26739,6 +27930,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -26769,6 +27961,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -26785,6 +27978,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -26905,10 +28099,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -26971,6 +28167,7 @@ public class SatelliteServer { } private static class getImageList_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getImageList_resultStandardScheme getScheme() { return new getImageList_resultStandardScheme(); } @@ -26978,6 +28175,7 @@ public class SatelliteServer { private static class getImageList_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getImageList_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -27036,6 +28234,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getImageList_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -27069,6 +28268,7 @@ public class SatelliteServer { } private static class getImageList_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getImageList_resultTupleScheme getScheme() { return new getImageList_resultTupleScheme(); } @@ -27143,6 +28343,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getImageDetails_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getImageDetails_args"); @@ -27209,10 +28410,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -27254,6 +28457,7 @@ public class SatelliteServer { } } + @Override public getImageDetails_args deepCopy() { return new getImageDetails_args(this); } @@ -27314,6 +28518,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -27336,6 +28541,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -27349,6 +28555,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -27444,14 +28651,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -27502,6 +28712,7 @@ public class SatelliteServer { } private static class getImageDetails_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getImageDetails_argsStandardScheme getScheme() { return new getImageDetails_argsStandardScheme(); } @@ -27509,6 +28720,7 @@ public class SatelliteServer { private static class getImageDetails_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getImageDetails_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -27546,6 +28758,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getImageDetails_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -27567,6 +28780,7 @@ public class SatelliteServer { } private static class getImageDetails_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getImageDetails_argsTupleScheme getScheme() { return new getImageDetails_argsTupleScheme(); } @@ -27613,6 +28827,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getImageDetails_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getImageDetails_result"); @@ -27689,10 +28904,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -27748,6 +28965,7 @@ public class SatelliteServer { } } + @Override public getImageDetails_result deepCopy() { return new getImageDetails_result(this); } @@ -27860,6 +29078,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -27898,6 +29117,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -27917,6 +29137,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -28062,10 +29283,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -28139,6 +29362,7 @@ public class SatelliteServer { } private static class getImageDetails_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getImageDetails_resultStandardScheme getScheme() { return new getImageDetails_resultStandardScheme(); } @@ -28146,6 +29370,7 @@ public class SatelliteServer { private static class getImageDetails_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getImageDetails_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -28203,6 +29428,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getImageDetails_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -28234,6 +29460,7 @@ public class SatelliteServer { } private static class getImageDetails_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getImageDetails_resultTupleScheme getScheme() { return new getImageDetails_resultTupleScheme(); } @@ -28304,6 +29531,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class createImage_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("createImage_args"); @@ -28370,10 +29598,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -28415,6 +29645,7 @@ public class SatelliteServer { } } + @Override public createImage_args deepCopy() { return new createImage_args(this); } @@ -28475,6 +29706,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -28497,6 +29729,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -28510,6 +29743,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -28605,14 +29839,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -28663,6 +29900,7 @@ public class SatelliteServer { } private static class createImage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public createImage_argsStandardScheme getScheme() { return new createImage_argsStandardScheme(); } @@ -28670,6 +29908,7 @@ public class SatelliteServer { private static class createImage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, createImage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -28707,6 +29946,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, createImage_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -28728,6 +29968,7 @@ public class SatelliteServer { } private static class createImage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public createImage_argsTupleScheme getScheme() { return new createImage_argsTupleScheme(); } @@ -28774,6 +30015,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class createImage_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("createImage_result"); @@ -28845,10 +30087,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -28897,6 +30141,7 @@ public class SatelliteServer { } } + @Override public createImage_result deepCopy() { return new createImage_result(this); } @@ -28983,6 +30228,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -29013,6 +30259,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -29029,6 +30276,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -29149,10 +30397,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -29215,6 +30465,7 @@ public class SatelliteServer { } private static class createImage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public createImage_resultStandardScheme getScheme() { return new createImage_resultStandardScheme(); } @@ -29222,6 +30473,7 @@ public class SatelliteServer { private static class createImage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, createImage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -29269,6 +30521,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, createImage_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -29295,6 +30548,7 @@ public class SatelliteServer { } private static class createImage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public createImage_resultTupleScheme getScheme() { return new createImage_resultTupleScheme(); } @@ -29353,6 +30607,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class updateImageBase_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("updateImageBase_args"); @@ -29424,10 +30679,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -29476,6 +30733,7 @@ public class SatelliteServer { } } + @Override public updateImageBase_args deepCopy() { return new updateImageBase_args(this); } @@ -29562,6 +30820,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -29592,6 +30851,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -29608,6 +30868,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -29728,14 +30989,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -29797,6 +31061,7 @@ public class SatelliteServer { } private static class updateImageBase_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public updateImageBase_argsStandardScheme getScheme() { return new updateImageBase_argsStandardScheme(); } @@ -29804,6 +31069,7 @@ public class SatelliteServer { private static class updateImageBase_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, updateImageBase_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -29850,6 +31116,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, updateImageBase_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -29876,6 +31143,7 @@ public class SatelliteServer { } private static class updateImageBase_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public updateImageBase_argsTupleScheme getScheme() { return new updateImageBase_argsTupleScheme(); } @@ -29933,6 +31201,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class updateImageBase_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("updateImageBase_result"); @@ -30004,10 +31273,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -30056,6 +31327,7 @@ public class SatelliteServer { } } + @Override public updateImageBase_result deepCopy() { return new updateImageBase_result(this); } @@ -30142,6 +31414,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case AUTH_ERROR: @@ -30172,6 +31445,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case AUTH_ERROR: @@ -30188,6 +31462,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -30308,10 +31583,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -30374,6 +31651,7 @@ public class SatelliteServer { } private static class updateImageBase_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public updateImageBase_resultStandardScheme getScheme() { return new updateImageBase_resultStandardScheme(); } @@ -30381,6 +31659,7 @@ public class SatelliteServer { private static class updateImageBase_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, updateImageBase_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -30429,6 +31708,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, updateImageBase_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -30455,6 +31735,7 @@ public class SatelliteServer { } private static class updateImageBase_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public updateImageBase_resultTupleScheme getScheme() { return new updateImageBase_resultTupleScheme(); } @@ -30514,6 +31795,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class updateImageVersion_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("updateImageVersion_args"); @@ -30585,10 +31867,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -30637,6 +31921,7 @@ public class SatelliteServer { } } + @Override public updateImageVersion_args deepCopy() { return new updateImageVersion_args(this); } @@ -30723,6 +32008,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -30753,6 +32039,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -30769,6 +32056,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -30889,14 +32177,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -30958,6 +32249,7 @@ public class SatelliteServer { } private static class updateImageVersion_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public updateImageVersion_argsStandardScheme getScheme() { return new updateImageVersion_argsStandardScheme(); } @@ -30965,6 +32257,7 @@ public class SatelliteServer { private static class updateImageVersion_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, updateImageVersion_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -31011,6 +32304,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, updateImageVersion_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -31037,6 +32331,7 @@ public class SatelliteServer { } private static class updateImageVersion_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public updateImageVersion_argsTupleScheme getScheme() { return new updateImageVersion_argsTupleScheme(); } @@ -31094,6 +32389,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class updateImageVersion_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("updateImageVersion_result"); @@ -31165,10 +32461,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -31217,6 +32515,7 @@ public class SatelliteServer { } } + @Override public updateImageVersion_result deepCopy() { return new updateImageVersion_result(this); } @@ -31303,6 +32602,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case AUTH_ERROR: @@ -31333,6 +32633,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case AUTH_ERROR: @@ -31349,6 +32650,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -31469,10 +32771,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -31535,6 +32839,7 @@ public class SatelliteServer { } private static class updateImageVersion_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public updateImageVersion_resultStandardScheme getScheme() { return new updateImageVersion_resultStandardScheme(); } @@ -31542,6 +32847,7 @@ public class SatelliteServer { private static class updateImageVersion_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, updateImageVersion_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -31590,6 +32896,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, updateImageVersion_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -31616,6 +32923,7 @@ public class SatelliteServer { } private static class updateImageVersion_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public updateImageVersion_resultTupleScheme getScheme() { return new updateImageVersion_resultTupleScheme(); } @@ -31675,6 +32983,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class deleteImageVersion_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("deleteImageVersion_args"); @@ -31741,10 +33050,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -31786,6 +33097,7 @@ public class SatelliteServer { } } + @Override public deleteImageVersion_args deepCopy() { return new deleteImageVersion_args(this); } @@ -31846,6 +33158,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -31868,6 +33181,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -31881,6 +33195,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -31976,14 +33291,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -32034,6 +33352,7 @@ public class SatelliteServer { } private static class deleteImageVersion_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public deleteImageVersion_argsStandardScheme getScheme() { return new deleteImageVersion_argsStandardScheme(); } @@ -32041,6 +33360,7 @@ public class SatelliteServer { private static class deleteImageVersion_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, deleteImageVersion_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -32078,6 +33398,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, deleteImageVersion_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -32099,6 +33420,7 @@ public class SatelliteServer { } private static class deleteImageVersion_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public deleteImageVersion_argsTupleScheme getScheme() { return new deleteImageVersion_argsTupleScheme(); } @@ -32145,6 +33467,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class deleteImageVersion_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("deleteImageVersion_result"); @@ -32216,10 +33539,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -32268,6 +33593,7 @@ public class SatelliteServer { } } + @Override public deleteImageVersion_result deepCopy() { return new deleteImageVersion_result(this); } @@ -32354,6 +33680,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case AUTH_ERROR: @@ -32384,6 +33711,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case AUTH_ERROR: @@ -32400,6 +33728,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -32520,10 +33849,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -32586,6 +33917,7 @@ public class SatelliteServer { } private static class deleteImageVersion_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public deleteImageVersion_resultStandardScheme getScheme() { return new deleteImageVersion_resultStandardScheme(); } @@ -32593,6 +33925,7 @@ public class SatelliteServer { private static class deleteImageVersion_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, deleteImageVersion_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -32641,6 +33974,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, deleteImageVersion_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -32667,6 +34001,7 @@ public class SatelliteServer { } private static class deleteImageVersion_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public deleteImageVersion_resultTupleScheme getScheme() { return new deleteImageVersion_resultTupleScheme(); } @@ -32726,6 +34061,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class deleteImageBase_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("deleteImageBase_args"); @@ -32792,10 +34128,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -32837,6 +34175,7 @@ public class SatelliteServer { } } + @Override public deleteImageBase_args deepCopy() { return new deleteImageBase_args(this); } @@ -32897,6 +34236,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -32919,6 +34259,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -32932,6 +34273,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -33027,14 +34369,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -33085,6 +34430,7 @@ public class SatelliteServer { } private static class deleteImageBase_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public deleteImageBase_argsStandardScheme getScheme() { return new deleteImageBase_argsStandardScheme(); } @@ -33092,6 +34438,7 @@ public class SatelliteServer { private static class deleteImageBase_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, deleteImageBase_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -33129,6 +34476,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, deleteImageBase_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -33150,6 +34498,7 @@ public class SatelliteServer { } private static class deleteImageBase_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public deleteImageBase_argsTupleScheme getScheme() { return new deleteImageBase_argsTupleScheme(); } @@ -33196,6 +34545,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class deleteImageBase_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("deleteImageBase_result"); @@ -33267,10 +34617,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -33319,6 +34671,7 @@ public class SatelliteServer { } } + @Override public deleteImageBase_result deepCopy() { return new deleteImageBase_result(this); } @@ -33405,6 +34758,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case AUTH_ERROR: @@ -33435,6 +34789,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case AUTH_ERROR: @@ -33451,6 +34806,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -33571,10 +34927,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -33637,6 +34995,7 @@ public class SatelliteServer { } private static class deleteImageBase_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public deleteImageBase_resultStandardScheme getScheme() { return new deleteImageBase_resultStandardScheme(); } @@ -33644,6 +35003,7 @@ public class SatelliteServer { private static class deleteImageBase_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, deleteImageBase_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -33692,6 +35052,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, deleteImageBase_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -33718,6 +35079,7 @@ public class SatelliteServer { } private static class deleteImageBase_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public deleteImageBase_resultTupleScheme getScheme() { return new deleteImageBase_resultTupleScheme(); } @@ -33777,6 +35139,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class writeImagePermissions_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("writeImagePermissions_args"); @@ -33848,10 +35211,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -33914,6 +35279,7 @@ public class SatelliteServer { } } + @Override public writeImagePermissions_args deepCopy() { return new writeImagePermissions_args(this); } @@ -34011,6 +35377,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -34041,6 +35408,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -34057,6 +35425,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -34177,14 +35546,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -34243,6 +35615,7 @@ public class SatelliteServer { } private static class writeImagePermissions_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public writeImagePermissions_argsStandardScheme getScheme() { return new writeImagePermissions_argsStandardScheme(); } @@ -34250,6 +35623,7 @@ public class SatelliteServer { private static class writeImagePermissions_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, writeImagePermissions_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -34308,6 +35682,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, writeImagePermissions_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -34342,6 +35717,7 @@ public class SatelliteServer { } private static class writeImagePermissions_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public writeImagePermissions_argsTupleScheme getScheme() { return new writeImagePermissions_argsTupleScheme(); } @@ -34417,6 +35793,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class writeImagePermissions_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("writeImagePermissions_result"); @@ -34488,10 +35865,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -34540,6 +35919,7 @@ public class SatelliteServer { } } + @Override public writeImagePermissions_result deepCopy() { return new writeImagePermissions_result(this); } @@ -34626,6 +36006,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case AUTH_ERROR: @@ -34656,6 +36037,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case AUTH_ERROR: @@ -34672,6 +36054,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -34792,10 +36175,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -34858,6 +36243,7 @@ public class SatelliteServer { } private static class writeImagePermissions_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public writeImagePermissions_resultStandardScheme getScheme() { return new writeImagePermissions_resultStandardScheme(); } @@ -34865,6 +36251,7 @@ public class SatelliteServer { private static class writeImagePermissions_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, writeImagePermissions_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -34913,6 +36300,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, writeImagePermissions_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -34939,6 +36327,7 @@ public class SatelliteServer { } private static class writeImagePermissions_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public writeImagePermissions_resultTupleScheme getScheme() { return new writeImagePermissions_resultTupleScheme(); } @@ -34998,6 +36387,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getImagePermissions_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getImagePermissions_args"); @@ -35064,10 +36454,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -35109,6 +36501,7 @@ public class SatelliteServer { } } + @Override public getImagePermissions_args deepCopy() { return new getImagePermissions_args(this); } @@ -35169,6 +36562,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -35191,6 +36585,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -35204,6 +36599,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -35299,14 +36695,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -35357,6 +36756,7 @@ public class SatelliteServer { } private static class getImagePermissions_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getImagePermissions_argsStandardScheme getScheme() { return new getImagePermissions_argsStandardScheme(); } @@ -35364,6 +36764,7 @@ public class SatelliteServer { private static class getImagePermissions_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getImagePermissions_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -35401,6 +36802,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getImagePermissions_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -35422,6 +36824,7 @@ public class SatelliteServer { } private static class getImagePermissions_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getImagePermissions_argsTupleScheme getScheme() { return new getImagePermissions_argsTupleScheme(); } @@ -35468,6 +36871,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getImagePermissions_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getImagePermissions_result"); @@ -35544,10 +36948,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -35617,6 +37023,7 @@ public class SatelliteServer { } } + @Override public getImagePermissions_result deepCopy() { return new getImagePermissions_result(this); } @@ -35740,6 +37147,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -35778,6 +37186,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -35797,6 +37206,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -35942,10 +37352,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -36016,6 +37428,7 @@ public class SatelliteServer { } private static class getImagePermissions_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getImagePermissions_resultStandardScheme getScheme() { return new getImagePermissions_resultStandardScheme(); } @@ -36023,6 +37436,7 @@ public class SatelliteServer { private static class getImagePermissions_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getImagePermissions_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -36092,6 +37506,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getImagePermissions_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -36131,6 +37546,7 @@ public class SatelliteServer { } private static class getImagePermissions_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getImagePermissions_resultTupleScheme getScheme() { return new getImagePermissions_resultTupleScheme(); } @@ -36219,6 +37635,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class setImageOwner_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("setImageOwner_args"); @@ -36290,10 +37707,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -36342,6 +37761,7 @@ public class SatelliteServer { } } + @Override public setImageOwner_args deepCopy() { return new setImageOwner_args(this); } @@ -36428,6 +37848,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -36458,6 +37879,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -36474,6 +37896,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -36594,14 +38017,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -36660,6 +38086,7 @@ public class SatelliteServer { } private static class setImageOwner_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setImageOwner_argsStandardScheme getScheme() { return new setImageOwner_argsStandardScheme(); } @@ -36667,6 +38094,7 @@ public class SatelliteServer { private static class setImageOwner_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, setImageOwner_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -36712,6 +38140,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, setImageOwner_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -36738,6 +38167,7 @@ public class SatelliteServer { } private static class setImageOwner_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setImageOwner_argsTupleScheme getScheme() { return new setImageOwner_argsTupleScheme(); } @@ -36794,6 +38224,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class setImageOwner_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("setImageOwner_result"); @@ -36865,10 +38296,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -36917,6 +38350,7 @@ public class SatelliteServer { } } + @Override public setImageOwner_result deepCopy() { return new setImageOwner_result(this); } @@ -37003,6 +38437,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case AUTH_ERROR: @@ -37033,6 +38468,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case AUTH_ERROR: @@ -37049,6 +38485,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -37169,10 +38606,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -37235,6 +38674,7 @@ public class SatelliteServer { } private static class setImageOwner_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setImageOwner_resultStandardScheme getScheme() { return new setImageOwner_resultStandardScheme(); } @@ -37242,6 +38682,7 @@ public class SatelliteServer { private static class setImageOwner_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, setImageOwner_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -37290,6 +38731,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, setImageOwner_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -37316,6 +38758,7 @@ public class SatelliteServer { } private static class setImageOwner_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setImageOwner_resultTupleScheme getScheme() { return new setImageOwner_resultTupleScheme(); } @@ -37375,6 +38818,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class setImageVersionExpiry_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("setImageVersionExpiry_args"); @@ -37446,10 +38890,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -37500,6 +38946,7 @@ public class SatelliteServer { this.expireTime = other.expireTime; } + @Override public setImageVersionExpiry_args deepCopy() { return new setImageVersionExpiry_args(this); } @@ -37585,6 +39032,7 @@ public class SatelliteServer { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __EXPIRETIME_ISSET_ID, value); } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -37615,6 +39063,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -37631,6 +39080,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -37749,14 +39199,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -37813,6 +39266,7 @@ public class SatelliteServer { } private static class setImageVersionExpiry_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setImageVersionExpiry_argsStandardScheme getScheme() { return new setImageVersionExpiry_argsStandardScheme(); } @@ -37820,6 +39274,7 @@ public class SatelliteServer { private static class setImageVersionExpiry_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, setImageVersionExpiry_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -37865,6 +39320,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, setImageVersionExpiry_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -37889,6 +39345,7 @@ public class SatelliteServer { } private static class setImageVersionExpiry_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setImageVersionExpiry_argsTupleScheme getScheme() { return new setImageVersionExpiry_argsTupleScheme(); } @@ -37945,6 +39402,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class setImageVersionExpiry_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("setImageVersionExpiry_result"); @@ -38021,10 +39479,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -38080,6 +39540,7 @@ public class SatelliteServer { } } + @Override public setImageVersionExpiry_result deepCopy() { return new setImageVersionExpiry_result(this); } @@ -38192,6 +39653,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case AUTH_ERROR: @@ -38230,6 +39692,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case AUTH_ERROR: @@ -38249,6 +39712,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -38394,10 +39858,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -38468,6 +39934,7 @@ public class SatelliteServer { } private static class setImageVersionExpiry_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setImageVersionExpiry_resultStandardScheme getScheme() { return new setImageVersionExpiry_resultStandardScheme(); } @@ -38475,6 +39942,7 @@ public class SatelliteServer { private static class setImageVersionExpiry_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, setImageVersionExpiry_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -38532,6 +40000,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, setImageVersionExpiry_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -38563,6 +40032,7 @@ public class SatelliteServer { } private static class setImageVersionExpiry_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setImageVersionExpiry_resultTupleScheme getScheme() { return new setImageVersionExpiry_resultTupleScheme(); } @@ -38633,6 +40103,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getImageVersionVirtConfig_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getImageVersionVirtConfig_args"); @@ -38699,10 +40170,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -38744,6 +40217,7 @@ public class SatelliteServer { } } + @Override public getImageVersionVirtConfig_args deepCopy() { return new getImageVersionVirtConfig_args(this); } @@ -38804,6 +40278,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -38826,6 +40301,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -38839,6 +40315,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -38934,14 +40411,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -38992,6 +40472,7 @@ public class SatelliteServer { } private static class getImageVersionVirtConfig_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getImageVersionVirtConfig_argsStandardScheme getScheme() { return new getImageVersionVirtConfig_argsStandardScheme(); } @@ -38999,6 +40480,7 @@ public class SatelliteServer { private static class getImageVersionVirtConfig_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getImageVersionVirtConfig_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -39036,6 +40518,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getImageVersionVirtConfig_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -39057,6 +40540,7 @@ public class SatelliteServer { } private static class getImageVersionVirtConfig_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getImageVersionVirtConfig_argsTupleScheme getScheme() { return new getImageVersionVirtConfig_argsTupleScheme(); } @@ -39103,6 +40587,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getImageVersionVirtConfig_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getImageVersionVirtConfig_result"); @@ -39179,10 +40664,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -39238,6 +40725,7 @@ public class SatelliteServer { } } + @Override public getImageVersionVirtConfig_result deepCopy() { return new getImageVersionVirtConfig_result(this); } @@ -39359,6 +40847,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -39401,6 +40890,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -39420,6 +40910,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -39565,10 +41056,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -39639,6 +41132,7 @@ public class SatelliteServer { } private static class getImageVersionVirtConfig_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getImageVersionVirtConfig_resultStandardScheme getScheme() { return new getImageVersionVirtConfig_resultStandardScheme(); } @@ -39646,6 +41140,7 @@ public class SatelliteServer { private static class getImageVersionVirtConfig_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getImageVersionVirtConfig_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -39702,6 +41197,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getImageVersionVirtConfig_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -39733,6 +41229,7 @@ public class SatelliteServer { } private static class getImageVersionVirtConfig_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getImageVersionVirtConfig_resultTupleScheme getScheme() { return new getImageVersionVirtConfig_resultTupleScheme(); } @@ -39802,6 +41299,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class setImageVersionVirtConfig_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("setImageVersionVirtConfig_args"); @@ -39873,10 +41371,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -39925,6 +41425,7 @@ public class SatelliteServer { } } + @Override public setImageVersionVirtConfig_args deepCopy() { return new setImageVersionVirtConfig_args(this); } @@ -40020,6 +41521,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -40054,6 +41556,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -40070,6 +41573,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -40190,14 +41694,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -40256,6 +41763,7 @@ public class SatelliteServer { } private static class setImageVersionVirtConfig_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setImageVersionVirtConfig_argsStandardScheme getScheme() { return new setImageVersionVirtConfig_argsStandardScheme(); } @@ -40263,6 +41771,7 @@ public class SatelliteServer { private static class setImageVersionVirtConfig_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, setImageVersionVirtConfig_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -40308,6 +41817,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, setImageVersionVirtConfig_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -40334,6 +41844,7 @@ public class SatelliteServer { } private static class setImageVersionVirtConfig_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setImageVersionVirtConfig_argsTupleScheme getScheme() { return new setImageVersionVirtConfig_argsTupleScheme(); } @@ -40390,6 +41901,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class setImageVersionVirtConfig_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("setImageVersionVirtConfig_result"); @@ -40461,10 +41973,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -40513,6 +42027,7 @@ public class SatelliteServer { } } + @Override public setImageVersionVirtConfig_result deepCopy() { return new setImageVersionVirtConfig_result(this); } @@ -40599,6 +42114,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case AUTH_ERROR: @@ -40629,6 +42145,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case AUTH_ERROR: @@ -40645,6 +42162,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -40765,10 +42283,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -40831,6 +42351,7 @@ public class SatelliteServer { } private static class setImageVersionVirtConfig_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setImageVersionVirtConfig_resultStandardScheme getScheme() { return new setImageVersionVirtConfig_resultStandardScheme(); } @@ -40838,6 +42359,7 @@ public class SatelliteServer { private static class setImageVersionVirtConfig_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, setImageVersionVirtConfig_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -40886,6 +42408,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, setImageVersionVirtConfig_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -40912,6 +42435,7 @@ public class SatelliteServer { } private static class setImageVersionVirtConfig_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setImageVersionVirtConfig_resultTupleScheme getScheme() { return new setImageVersionVirtConfig_resultTupleScheme(); } @@ -40971,6 +42495,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class requestImageReplication_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("requestImageReplication_args"); @@ -41037,10 +42562,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -41082,6 +42609,7 @@ public class SatelliteServer { } } + @Override public requestImageReplication_args deepCopy() { return new requestImageReplication_args(this); } @@ -41142,6 +42670,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -41164,6 +42693,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -41177,6 +42707,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -41272,14 +42803,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -41330,6 +42864,7 @@ public class SatelliteServer { } private static class requestImageReplication_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public requestImageReplication_argsStandardScheme getScheme() { return new requestImageReplication_argsStandardScheme(); } @@ -41337,6 +42872,7 @@ public class SatelliteServer { private static class requestImageReplication_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, requestImageReplication_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -41374,6 +42910,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, requestImageReplication_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -41395,6 +42932,7 @@ public class SatelliteServer { } private static class requestImageReplication_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public requestImageReplication_argsTupleScheme getScheme() { return new requestImageReplication_argsTupleScheme(); } @@ -41441,6 +42979,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class requestImageReplication_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("requestImageReplication_result"); @@ -41517,10 +43056,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -41576,6 +43117,7 @@ public class SatelliteServer { } } + @Override public requestImageReplication_result deepCopy() { return new requestImageReplication_result(this); } @@ -41688,6 +43230,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -41726,6 +43269,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -41745,6 +43289,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -41890,10 +43435,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -41964,6 +43511,7 @@ public class SatelliteServer { } private static class requestImageReplication_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public requestImageReplication_resultStandardScheme getScheme() { return new requestImageReplication_resultStandardScheme(); } @@ -41971,6 +43519,7 @@ public class SatelliteServer { private static class requestImageReplication_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, requestImageReplication_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -42027,6 +43576,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, requestImageReplication_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -42058,6 +43608,7 @@ public class SatelliteServer { } private static class requestImageReplication_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public requestImageReplication_resultTupleScheme getScheme() { return new requestImageReplication_resultTupleScheme(); } @@ -42127,6 +43678,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class publishImageVersion_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("publishImageVersion_args"); @@ -42193,10 +43745,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -42238,6 +43792,7 @@ public class SatelliteServer { } } + @Override public publishImageVersion_args deepCopy() { return new publishImageVersion_args(this); } @@ -42298,6 +43853,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -42320,6 +43876,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -42333,6 +43890,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -42428,14 +43986,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -42486,6 +44047,7 @@ public class SatelliteServer { } private static class publishImageVersion_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public publishImageVersion_argsStandardScheme getScheme() { return new publishImageVersion_argsStandardScheme(); } @@ -42493,6 +44055,7 @@ public class SatelliteServer { private static class publishImageVersion_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, publishImageVersion_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -42530,6 +44093,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, publishImageVersion_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -42551,6 +44115,7 @@ public class SatelliteServer { } private static class publishImageVersion_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public publishImageVersion_argsTupleScheme getScheme() { return new publishImageVersion_argsTupleScheme(); } @@ -42597,6 +44162,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class publishImageVersion_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("publishImageVersion_result"); @@ -42678,10 +44244,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -42744,6 +44312,7 @@ public class SatelliteServer { } } + @Override public publishImageVersion_result deepCopy() { return new publishImageVersion_result(this); } @@ -42882,6 +44451,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -42928,6 +44498,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -42950,6 +44521,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -43120,10 +44692,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -43202,6 +44776,7 @@ public class SatelliteServer { } private static class publishImageVersion_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public publishImageVersion_resultStandardScheme getScheme() { return new publishImageVersion_resultStandardScheme(); } @@ -43209,6 +44784,7 @@ public class SatelliteServer { private static class publishImageVersion_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, publishImageVersion_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -43274,6 +44850,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, publishImageVersion_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -43310,6 +44887,7 @@ public class SatelliteServer { } private static class publishImageVersion_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public publishImageVersion_resultTupleScheme getScheme() { return new publishImageVersion_resultTupleScheme(); } @@ -43390,6 +44968,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class createLecture_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("createLecture_args"); @@ -43456,10 +45035,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -43501,6 +45082,7 @@ public class SatelliteServer { } } + @Override public createLecture_args deepCopy() { return new createLecture_args(this); } @@ -43561,6 +45143,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -43583,6 +45166,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -43596,6 +45180,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -43691,14 +45276,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -43752,6 +45340,7 @@ public class SatelliteServer { } private static class createLecture_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public createLecture_argsStandardScheme getScheme() { return new createLecture_argsStandardScheme(); } @@ -43759,6 +45348,7 @@ public class SatelliteServer { private static class createLecture_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, createLecture_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -43797,6 +45387,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, createLecture_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -43818,6 +45409,7 @@ public class SatelliteServer { } private static class createLecture_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public createLecture_argsTupleScheme getScheme() { return new createLecture_argsTupleScheme(); } @@ -43865,6 +45457,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class createLecture_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("createLecture_result"); @@ -43946,10 +45539,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -44012,6 +45607,7 @@ public class SatelliteServer { } } + @Override public createLecture_result deepCopy() { return new createLecture_result(this); } @@ -44150,6 +45746,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -44196,6 +45793,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -44218,6 +45816,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -44388,10 +45987,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -44470,6 +46071,7 @@ public class SatelliteServer { } private static class createLecture_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public createLecture_resultStandardScheme getScheme() { return new createLecture_resultStandardScheme(); } @@ -44477,6 +46079,7 @@ public class SatelliteServer { private static class createLecture_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, createLecture_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -44542,6 +46145,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, createLecture_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -44578,6 +46182,7 @@ public class SatelliteServer { } private static class createLecture_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public createLecture_resultTupleScheme getScheme() { return new createLecture_resultTupleScheme(); } @@ -44658,6 +46263,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class updateLecture_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("updateLecture_args"); @@ -44729,10 +46335,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -44781,6 +46389,7 @@ public class SatelliteServer { } } + @Override public updateLecture_args deepCopy() { return new updateLecture_args(this); } @@ -44867,6 +46476,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -44897,6 +46507,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -44913,6 +46524,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -45033,14 +46645,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -45102,6 +46717,7 @@ public class SatelliteServer { } private static class updateLecture_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public updateLecture_argsStandardScheme getScheme() { return new updateLecture_argsStandardScheme(); } @@ -45109,6 +46725,7 @@ public class SatelliteServer { private static class updateLecture_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, updateLecture_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -45155,6 +46772,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, updateLecture_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -45181,6 +46799,7 @@ public class SatelliteServer { } private static class updateLecture_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public updateLecture_argsTupleScheme getScheme() { return new updateLecture_argsTupleScheme(); } @@ -45238,6 +46857,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class updateLecture_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("updateLecture_result"); @@ -45314,10 +46934,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -45373,6 +46995,7 @@ public class SatelliteServer { } } + @Override public updateLecture_result deepCopy() { return new updateLecture_result(this); } @@ -45485,6 +47108,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case AUTH_ERROR: @@ -45523,6 +47147,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case AUTH_ERROR: @@ -45542,6 +47167,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -45687,10 +47313,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -45761,6 +47389,7 @@ public class SatelliteServer { } private static class updateLecture_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public updateLecture_resultStandardScheme getScheme() { return new updateLecture_resultStandardScheme(); } @@ -45768,6 +47397,7 @@ public class SatelliteServer { private static class updateLecture_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, updateLecture_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -45825,6 +47455,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, updateLecture_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -45856,6 +47487,7 @@ public class SatelliteServer { } private static class updateLecture_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public updateLecture_resultTupleScheme getScheme() { return new updateLecture_resultTupleScheme(); } @@ -45926,6 +47558,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getLectureList_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getLectureList_args"); @@ -45992,10 +47625,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -46039,6 +47674,7 @@ public class SatelliteServer { this.page = other.page; } + @Override public getLectureList_args deepCopy() { return new getLectureList_args(this); } @@ -46098,6 +47734,7 @@ public class SatelliteServer { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __PAGE_ISSET_ID, value); } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -46120,6 +47757,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -46133,6 +47771,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -46226,14 +47865,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -46282,6 +47924,7 @@ public class SatelliteServer { } private static class getLectureList_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getLectureList_argsStandardScheme getScheme() { return new getLectureList_argsStandardScheme(); } @@ -46289,6 +47932,7 @@ public class SatelliteServer { private static class getLectureList_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getLectureList_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -46326,6 +47970,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getLectureList_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -46345,6 +47990,7 @@ public class SatelliteServer { } private static class getLectureList_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getLectureList_argsTupleScheme getScheme() { return new getLectureList_argsTupleScheme(); } @@ -46391,6 +48037,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getLectureList_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getLectureList_result"); @@ -46462,10 +48109,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -46519,6 +48168,7 @@ public class SatelliteServer { } } + @Override public getLectureList_result deepCopy() { return new getLectureList_result(this); } @@ -46621,6 +48271,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -46651,6 +48302,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -46667,6 +48319,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -46787,10 +48440,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -46853,6 +48508,7 @@ public class SatelliteServer { } private static class getLectureList_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getLectureList_resultStandardScheme getScheme() { return new getLectureList_resultStandardScheme(); } @@ -46860,6 +48516,7 @@ public class SatelliteServer { private static class getLectureList_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getLectureList_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -46918,6 +48575,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getLectureList_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -46951,6 +48609,7 @@ public class SatelliteServer { } private static class getLectureList_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getLectureList_resultTupleScheme getScheme() { return new getLectureList_resultTupleScheme(); } @@ -47025,6 +48684,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getLectureDetails_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getLectureDetails_args"); @@ -47091,10 +48751,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -47136,6 +48798,7 @@ public class SatelliteServer { } } + @Override public getLectureDetails_args deepCopy() { return new getLectureDetails_args(this); } @@ -47196,6 +48859,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -47218,6 +48882,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -47231,6 +48896,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -47326,14 +48992,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -47384,6 +49053,7 @@ public class SatelliteServer { } private static class getLectureDetails_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getLectureDetails_argsStandardScheme getScheme() { return new getLectureDetails_argsStandardScheme(); } @@ -47391,6 +49061,7 @@ public class SatelliteServer { private static class getLectureDetails_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getLectureDetails_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -47428,6 +49099,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getLectureDetails_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -47449,6 +49121,7 @@ public class SatelliteServer { } private static class getLectureDetails_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getLectureDetails_argsTupleScheme getScheme() { return new getLectureDetails_argsTupleScheme(); } @@ -47495,6 +49168,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getLectureDetails_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getLectureDetails_result"); @@ -47571,10 +49245,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -47630,6 +49306,7 @@ public class SatelliteServer { } } + @Override public getLectureDetails_result deepCopy() { return new getLectureDetails_result(this); } @@ -47742,6 +49419,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -47780,6 +49458,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -47799,6 +49478,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -47944,10 +49624,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -48021,6 +49703,7 @@ public class SatelliteServer { } private static class getLectureDetails_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getLectureDetails_resultStandardScheme getScheme() { return new getLectureDetails_resultStandardScheme(); } @@ -48028,6 +49711,7 @@ public class SatelliteServer { private static class getLectureDetails_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getLectureDetails_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -48085,6 +49769,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getLectureDetails_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -48116,6 +49801,7 @@ public class SatelliteServer { } private static class getLectureDetails_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getLectureDetails_resultTupleScheme getScheme() { return new getLectureDetails_resultTupleScheme(); } @@ -48186,6 +49872,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class deleteLecture_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("deleteLecture_args"); @@ -48252,10 +49939,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -48297,6 +49986,7 @@ public class SatelliteServer { } } + @Override public deleteLecture_args deepCopy() { return new deleteLecture_args(this); } @@ -48357,6 +50047,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -48379,6 +50070,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -48392,6 +50084,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -48487,14 +50180,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -48545,6 +50241,7 @@ public class SatelliteServer { } private static class deleteLecture_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public deleteLecture_argsStandardScheme getScheme() { return new deleteLecture_argsStandardScheme(); } @@ -48552,6 +50249,7 @@ public class SatelliteServer { private static class deleteLecture_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, deleteLecture_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -48589,6 +50287,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, deleteLecture_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -48610,6 +50309,7 @@ public class SatelliteServer { } private static class deleteLecture_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public deleteLecture_argsTupleScheme getScheme() { return new deleteLecture_argsTupleScheme(); } @@ -48656,6 +50356,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class deleteLecture_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("deleteLecture_result"); @@ -48727,10 +50428,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -48779,6 +50482,7 @@ public class SatelliteServer { } } + @Override public deleteLecture_result deepCopy() { return new deleteLecture_result(this); } @@ -48865,6 +50569,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case AUTH_ERROR: @@ -48895,6 +50600,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case AUTH_ERROR: @@ -48911,6 +50617,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -49031,10 +50738,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -49097,6 +50806,7 @@ public class SatelliteServer { } private static class deleteLecture_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public deleteLecture_resultStandardScheme getScheme() { return new deleteLecture_resultStandardScheme(); } @@ -49104,6 +50814,7 @@ public class SatelliteServer { private static class deleteLecture_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, deleteLecture_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -49152,6 +50863,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, deleteLecture_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -49178,6 +50890,7 @@ public class SatelliteServer { } private static class deleteLecture_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public deleteLecture_resultTupleScheme getScheme() { return new deleteLecture_resultTupleScheme(); } @@ -49237,6 +50950,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class writeLecturePermissions_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("writeLecturePermissions_args"); @@ -49308,10 +51022,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -49374,6 +51090,7 @@ public class SatelliteServer { } } + @Override public writeLecturePermissions_args deepCopy() { return new writeLecturePermissions_args(this); } @@ -49471,6 +51188,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -49501,6 +51219,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -49517,6 +51236,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -49637,14 +51357,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -49703,6 +51426,7 @@ public class SatelliteServer { } private static class writeLecturePermissions_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public writeLecturePermissions_argsStandardScheme getScheme() { return new writeLecturePermissions_argsStandardScheme(); } @@ -49710,6 +51434,7 @@ public class SatelliteServer { private static class writeLecturePermissions_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, writeLecturePermissions_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -49768,6 +51493,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, writeLecturePermissions_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -49802,6 +51528,7 @@ public class SatelliteServer { } private static class writeLecturePermissions_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public writeLecturePermissions_argsTupleScheme getScheme() { return new writeLecturePermissions_argsTupleScheme(); } @@ -49877,6 +51604,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class writeLecturePermissions_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("writeLecturePermissions_result"); @@ -49948,10 +51676,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -50000,6 +51730,7 @@ public class SatelliteServer { } } + @Override public writeLecturePermissions_result deepCopy() { return new writeLecturePermissions_result(this); } @@ -50086,6 +51817,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case AUTH_ERROR: @@ -50116,6 +51848,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case AUTH_ERROR: @@ -50132,6 +51865,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -50252,10 +51986,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -50318,6 +52054,7 @@ public class SatelliteServer { } private static class writeLecturePermissions_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public writeLecturePermissions_resultStandardScheme getScheme() { return new writeLecturePermissions_resultStandardScheme(); } @@ -50325,6 +52062,7 @@ public class SatelliteServer { private static class writeLecturePermissions_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, writeLecturePermissions_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -50373,6 +52111,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, writeLecturePermissions_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -50399,6 +52138,7 @@ public class SatelliteServer { } private static class writeLecturePermissions_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public writeLecturePermissions_resultTupleScheme getScheme() { return new writeLecturePermissions_resultTupleScheme(); } @@ -50458,6 +52198,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getLecturePermissions_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getLecturePermissions_args"); @@ -50524,10 +52265,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -50569,6 +52312,7 @@ public class SatelliteServer { } } + @Override public getLecturePermissions_args deepCopy() { return new getLecturePermissions_args(this); } @@ -50629,6 +52373,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -50651,6 +52396,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -50664,6 +52410,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -50759,14 +52506,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -50817,6 +52567,7 @@ public class SatelliteServer { } private static class getLecturePermissions_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getLecturePermissions_argsStandardScheme getScheme() { return new getLecturePermissions_argsStandardScheme(); } @@ -50824,6 +52575,7 @@ public class SatelliteServer { private static class getLecturePermissions_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getLecturePermissions_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -50861,6 +52613,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getLecturePermissions_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -50882,6 +52635,7 @@ public class SatelliteServer { } private static class getLecturePermissions_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getLecturePermissions_argsTupleScheme getScheme() { return new getLecturePermissions_argsTupleScheme(); } @@ -50928,6 +52682,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getLecturePermissions_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getLecturePermissions_result"); @@ -51004,10 +52759,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -51077,6 +52834,7 @@ public class SatelliteServer { } } + @Override public getLecturePermissions_result deepCopy() { return new getLecturePermissions_result(this); } @@ -51200,6 +52958,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -51238,6 +52997,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -51257,6 +53017,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -51402,10 +53163,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -51476,6 +53239,7 @@ public class SatelliteServer { } private static class getLecturePermissions_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getLecturePermissions_resultStandardScheme getScheme() { return new getLecturePermissions_resultStandardScheme(); } @@ -51483,6 +53247,7 @@ public class SatelliteServer { private static class getLecturePermissions_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getLecturePermissions_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -51552,6 +53317,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getLecturePermissions_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -51591,6 +53357,7 @@ public class SatelliteServer { } private static class getLecturePermissions_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getLecturePermissions_resultTupleScheme getScheme() { return new getLecturePermissions_resultTupleScheme(); } @@ -51679,6 +53446,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class setLectureOwner_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("setLectureOwner_args"); @@ -51750,10 +53518,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -51802,6 +53572,7 @@ public class SatelliteServer { } } + @Override public setLectureOwner_args deepCopy() { return new setLectureOwner_args(this); } @@ -51888,6 +53659,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -51918,6 +53690,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -51934,6 +53707,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -52054,14 +53828,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -52120,6 +53897,7 @@ public class SatelliteServer { } private static class setLectureOwner_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setLectureOwner_argsStandardScheme getScheme() { return new setLectureOwner_argsStandardScheme(); } @@ -52127,6 +53905,7 @@ public class SatelliteServer { private static class setLectureOwner_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, setLectureOwner_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -52172,6 +53951,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, setLectureOwner_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -52198,6 +53978,7 @@ public class SatelliteServer { } private static class setLectureOwner_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setLectureOwner_argsTupleScheme getScheme() { return new setLectureOwner_argsTupleScheme(); } @@ -52254,6 +54035,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class setLectureOwner_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("setLectureOwner_result"); @@ -52325,10 +54107,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -52377,6 +54161,7 @@ public class SatelliteServer { } } + @Override public setLectureOwner_result deepCopy() { return new setLectureOwner_result(this); } @@ -52463,6 +54248,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case AUTH_ERROR: @@ -52493,6 +54279,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case AUTH_ERROR: @@ -52509,6 +54296,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -52629,10 +54417,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -52695,6 +54485,7 @@ public class SatelliteServer { } private static class setLectureOwner_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setLectureOwner_resultStandardScheme getScheme() { return new setLectureOwner_resultStandardScheme(); } @@ -52702,6 +54493,7 @@ public class SatelliteServer { private static class setLectureOwner_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, setLectureOwner_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -52750,6 +54542,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, setLectureOwner_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -52776,6 +54569,7 @@ public class SatelliteServer { } private static class setLectureOwner_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setLectureOwner_resultTupleScheme getScheme() { return new setLectureOwner_resultTupleScheme(); } @@ -52835,6 +54629,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getPredefinedData_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getPredefinedData_args"); @@ -52896,10 +54691,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -52934,6 +54731,7 @@ public class SatelliteServer { } } + @Override public getPredefinedData_args deepCopy() { return new getPredefinedData_args(this); } @@ -52968,6 +54766,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -52982,6 +54781,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -52992,6 +54792,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -53062,14 +54863,17 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { scheme(oprot).write(oprot, this); } @@ -53112,6 +54916,7 @@ public class SatelliteServer { } private static class getPredefinedData_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getPredefinedData_argsStandardScheme getScheme() { return new getPredefinedData_argsStandardScheme(); } @@ -53119,6 +54924,7 @@ public class SatelliteServer { private static class getPredefinedData_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getPredefinedData_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -53148,6 +54954,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getPredefinedData_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -53164,6 +54971,7 @@ public class SatelliteServer { } private static class getPredefinedData_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getPredefinedData_argsTupleScheme getScheme() { return new getPredefinedData_argsTupleScheme(); } @@ -53200,6 +55008,7 @@ public class SatelliteServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getPredefinedData_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getPredefinedData_result"); @@ -53271,10 +55080,12 @@ public class SatelliteServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -53323,6 +55134,7 @@ public class SatelliteServer { } } + @Override public getPredefinedData_result deepCopy() { return new getPredefinedData_result(this); } @@ -53409,6 +55221,7 @@ public class SatelliteServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -53439,6 +55252,7 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -53455,6 +55269,7 @@ public class SatelliteServer { } /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + @Override public boolean isSet(_Fields field) { if (field == null) { throw new java.lang.IllegalArgumentException(); @@ -53575,10 +55390,12 @@ public class SatelliteServer { } @org.apache.thrift.annotation.Nullable + @Override public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } + @Override public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { scheme(iprot).read(iprot, this); } @@ -53644,6 +55461,7 @@ public class SatelliteServer { } private static class getPredefinedData_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getPredefinedData_resultStandardScheme getScheme() { return new getPredefinedData_resultStandardScheme(); } @@ -53651,6 +55469,7 @@ public class SatelliteServer { private static class getPredefinedData_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getPredefinedData_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -53699,6 +55518,7 @@ public class SatelliteServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getPredefinedData_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -53725,6 +55545,7 @@ public class SatelliteServer { } private static class getPredefinedData_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getPredefinedData_resultTupleScheme getScheme() { return new getPredefinedData_resultTupleScheme(); } -- cgit v1.2.3-55-g7522