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 --- pom.xml | 2 +- .../openslx/bwlp/thrift/iface/MasterServer.java | 969 +++++++++- .../openslx/bwlp/thrift/iface/SatelliteConfig.java | 126 +- .../openslx/bwlp/thrift/iface/SatelliteServer.java | 1977 +++++++++++++++++++- src/main/thrift/bwlp.thrift | 2 + thrift-compile.sh | 9 +- 6 files changed, 2993 insertions(+), 92 deletions(-) diff --git a/pom.xml b/pom.xml index 70898af..a6485ed 100644 --- a/pom.xml +++ b/pom.xml @@ -143,7 +143,7 @@ org.apache.thrift libthrift - 0.15.0 + 0.17.0 compile diff --git a/src/main/java/org/openslx/bwlp/thrift/iface/MasterServer.java b/src/main/java/org/openslx/bwlp/thrift/iface/MasterServer.java index 8d97c8b..fda3d60 100644 --- a/src/main/java/org/openslx/bwlp/thrift/iface/MasterServer.java +++ b/src/main/java/org/openslx/bwlp/thrift/iface/MasterServer.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 MasterServer { public interface Iface { @@ -117,9 +117,11 @@ public class MasterServer { 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); } @@ -134,6 +136,7 @@ public class MasterServer { super(iprot, oprot); } + @Override public boolean ping() throws org.apache.thrift.TException { send_ping(); @@ -156,6 +159,7 @@ public class MasterServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "ping failed: unknown result"); } + @Override public SessionData authenticate(java.lang.String login, java.lang.String password) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException { send_authenticate(login, password); @@ -186,6 +190,7 @@ public class MasterServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "authenticate failed: unknown result"); } + @Override public ClientSessionData localAccountLogin(java.lang.String login, java.lang.String password) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException { send_localAccountLogin(login, password); @@ -216,6 +221,7 @@ public class MasterServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "localAccountLogin failed: unknown result"); } + @Override public void setUsedSatellite(java.lang.String sessionId, java.lang.String satelliteName) throws org.apache.thrift.TException { send_setUsedSatellite(sessionId, satelliteName); @@ -237,6 +243,7 @@ public class MasterServer { return; } + @Override public java.util.List findUser(java.lang.String sessionId, java.lang.String organizationId, java.lang.String searchTerm) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException { send_findUser(sessionId, organizationId, searchTerm); @@ -268,6 +275,7 @@ public class MasterServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "findUser failed: unknown result"); } + @Override public java.util.List getPublicImages(java.lang.String sessionId, int page) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException { send_getPublicImages(sessionId, page); @@ -298,6 +306,7 @@ public class MasterServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getPublicImages failed: unknown result"); } + @Override public ImageDetailsRead getImageDetails(java.lang.String sessionId, java.lang.String imageBaseId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { send_getImageDetails(sessionId, imageBaseId); @@ -331,6 +340,7 @@ public class MasterServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getImageDetails failed: unknown result"); } + @Override public UserInfo getUser(java.lang.String userToken, java.lang.String userId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException { send_getUser(userToken, userId); @@ -364,6 +374,7 @@ public class MasterServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getUser failed: unknown result"); } + @Override public void invalidateSession(java.lang.String sessionId) throws TInvalidTokenException, org.apache.thrift.TException { send_invalidateSession(sessionId); @@ -387,6 +398,7 @@ public class MasterServer { return; } + @Override public UserInfo getUserFromToken(java.lang.String token) throws TInvalidTokenException, org.apache.thrift.TException { send_getUserFromToken(token); @@ -413,6 +425,7 @@ public class MasterServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getUserFromToken failed: unknown result"); } + @Override public boolean isServerAuthenticated(java.lang.String serverSessionId) throws org.apache.thrift.TException { send_isServerAuthenticated(serverSessionId); @@ -436,6 +449,7 @@ public class MasterServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "isServerAuthenticated failed: unknown result"); } + @Override public java.nio.ByteBuffer startServerAuthentication(int satelliteId) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException { send_startServerAuthentication(satelliteId); @@ -465,6 +479,7 @@ public class MasterServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "startServerAuthentication failed: unknown result"); } + @Override public ServerSessionData serverAuthenticate(int satelliteId, java.nio.ByteBuffer challengeResponse) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException { send_serverAuthenticate(satelliteId, challengeResponse); @@ -495,6 +510,7 @@ public class MasterServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "serverAuthenticate failed: unknown result"); } + @Override public ImagePublishData getImageData(java.lang.String serverSessionId, java.lang.String imageVersionId) throws TAuthorizationException, TInvocationException, TNotFoundException, org.apache.thrift.TException { send_getImageData(serverSessionId, imageVersionId); @@ -528,6 +544,7 @@ public class MasterServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getImageData failed: unknown result"); } + @Override public TransferInformation submitImage(java.lang.String userToken, ImagePublishData imageDescription, java.util.List blockHashes) throws TAuthorizationException, TInvocationException, TTransferRejectedException, org.apache.thrift.TException { send_submitImage(userToken, imageDescription, blockHashes); @@ -562,6 +579,7 @@ public class MasterServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "submitImage failed: unknown result"); } + @Override public int registerSatellite(java.lang.String userToken, java.lang.String displayName, java.util.List addresses, java.lang.String modulus, java.lang.String exponent, java.nio.ByteBuffer certsha256) throws TInvocationException, org.apache.thrift.TException { send_registerSatellite(userToken, displayName, addresses, modulus, exponent, certsha256); @@ -593,6 +611,7 @@ public class MasterServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "registerSatellite failed: unknown result"); } + @Override public boolean updateSatellite(java.lang.String serverSessionId, java.lang.String displayName, java.util.List addresses) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException { send_updateSatellite(serverSessionId, displayName, addresses); @@ -624,6 +643,7 @@ public class MasterServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "updateSatellite failed: unknown result"); } + @Override public TransferInformation downloadImage(java.lang.String sessionId, java.lang.String imageVersionId) throws TAuthorizationException, TInvocationException, TNotFoundException, org.apache.thrift.TException { send_downloadImage(sessionId, imageVersionId); @@ -657,6 +677,7 @@ public class MasterServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "downloadImage failed: unknown result"); } + @Override public java.util.List getOrganizations() throws TInvocationException, org.apache.thrift.TException { send_getOrganizations(); @@ -682,6 +703,7 @@ public class MasterServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getOrganizations failed: unknown result"); } + @Override public java.util.List getOperatingSystems() throws TInvocationException, org.apache.thrift.TException { send_getOperatingSystems(); @@ -707,6 +729,7 @@ public class MasterServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getOperatingSystems failed: unknown result"); } + @Override public java.util.List getVirtualizers() throws TInvocationException, org.apache.thrift.TException { send_getVirtualizers(); @@ -732,6 +755,7 @@ public class MasterServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getVirtualizers failed: unknown result"); } + @Override public java.util.List getTags(long startDate) throws TInvocationException, org.apache.thrift.TException { send_getTags(startDate); @@ -758,6 +782,7 @@ public class MasterServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getTags failed: unknown result"); } + @Override public java.util.List getSoftware(long startDate) throws TInvocationException, org.apache.thrift.TException { send_getSoftware(startDate); @@ -784,6 +809,7 @@ public class MasterServer { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getSoftware failed: unknown result"); } + @Override public TransferStatus queryUploadStatus(java.lang.String uploadToken) throws TInvalidTokenException, org.apache.thrift.TException { send_queryUploadStatus(uploadToken); @@ -819,6 +845,7 @@ public class MasterServer { this.clientManager = clientManager; this.protocolFactory = protocolFactory; } + @Override public AsyncClient getAsyncClient(org.apache.thrift.transport.TNonblockingTransport transport) { return new AsyncClient(protocolFactory, clientManager, transport); } @@ -828,6 +855,7 @@ public class MasterServer { super(protocolFactory, clientManager, transport); } + @Override public void ping(org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); ping_call method_call = new ping_call(resultHandler, this, ___protocolFactory, ___transport); @@ -840,6 +868,7 @@ public class MasterServer { 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("ping", org.apache.thrift.protocol.TMessageType.CALL, 0)); ping_args args = new ping_args(); @@ -847,6 +876,7 @@ public class MasterServer { prot.writeMessageEnd(); } + @Override public java.lang.Boolean 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!"); @@ -857,6 +887,7 @@ public class MasterServer { } } + @Override public void authenticate(java.lang.String login, java.lang.String password, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); authenticate_call method_call = new authenticate_call(login, password, resultHandler, this, ___protocolFactory, ___transport); @@ -873,6 +904,7 @@ public class MasterServer { this.password = password; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("authenticate", org.apache.thrift.protocol.TMessageType.CALL, 0)); authenticate_args args = new authenticate_args(); @@ -882,6 +914,7 @@ public class MasterServer { prot.writeMessageEnd(); } + @Override public SessionData 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!"); @@ -892,6 +925,7 @@ public class MasterServer { } } + @Override public void localAccountLogin(java.lang.String login, java.lang.String password, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); localAccountLogin_call method_call = new localAccountLogin_call(login, password, resultHandler, this, ___protocolFactory, ___transport); @@ -908,6 +942,7 @@ public class MasterServer { this.password = password; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("localAccountLogin", org.apache.thrift.protocol.TMessageType.CALL, 0)); localAccountLogin_args args = new localAccountLogin_args(); @@ -917,6 +952,7 @@ public class MasterServer { prot.writeMessageEnd(); } + @Override public ClientSessionData 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!"); @@ -927,6 +963,7 @@ public class MasterServer { } } + @Override public void setUsedSatellite(java.lang.String sessionId, java.lang.String satelliteName, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); setUsedSatellite_call method_call = new setUsedSatellite_call(sessionId, satelliteName, resultHandler, this, ___protocolFactory, ___transport); @@ -943,6 +980,7 @@ public class MasterServer { this.satelliteName = satelliteName; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("setUsedSatellite", org.apache.thrift.protocol.TMessageType.CALL, 0)); setUsedSatellite_args args = new setUsedSatellite_args(); @@ -952,16 +990,19 @@ public class MasterServer { prot.writeMessageEnd(); } + @Override public Void 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!"); } 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_setUsedSatellite(); return null; } } + @Override public void findUser(java.lang.String sessionId, java.lang.String organizationId, java.lang.String searchTerm, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { checkReady(); findUser_call method_call = new findUser_call(sessionId, organizationId, searchTerm, resultHandler, this, ___protocolFactory, ___transport); @@ -980,6 +1021,7 @@ public class MasterServer { this.searchTerm = searchTerm; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("findUser", org.apache.thrift.protocol.TMessageType.CALL, 0)); findUser_args args = new findUser_args(); @@ -990,6 +1032,7 @@ public class MasterServer { 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!"); @@ -1000,6 +1043,7 @@ public class MasterServer { } } + @Override public void getPublicImages(java.lang.String sessionId, int page, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { checkReady(); getPublicImages_call method_call = new getPublicImages_call(sessionId, page, resultHandler, this, ___protocolFactory, ___transport); @@ -1016,6 +1060,7 @@ public class MasterServer { 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("getPublicImages", org.apache.thrift.protocol.TMessageType.CALL, 0)); getPublicImages_args args = new getPublicImages_args(); @@ -1025,6 +1070,7 @@ public class MasterServer { 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!"); @@ -1035,6 +1081,7 @@ public class MasterServer { } } + @Override public void getImageDetails(java.lang.String sessionId, java.lang.String imageBaseId, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); getImageDetails_call method_call = new getImageDetails_call(sessionId, imageBaseId, resultHandler, this, ___protocolFactory, ___transport); @@ -1051,6 +1098,7 @@ public class MasterServer { 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(); @@ -1060,6 +1108,7 @@ public class MasterServer { 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!"); @@ -1070,6 +1119,7 @@ public class MasterServer { } } + @Override public void getUser(java.lang.String userToken, java.lang.String userId, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); getUser_call method_call = new getUser_call(userToken, userId, resultHandler, this, ___protocolFactory, ___transport); @@ -1086,6 +1136,7 @@ public class MasterServer { this.userId = userId; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getUser", org.apache.thrift.protocol.TMessageType.CALL, 0)); getUser_args args = new getUser_args(); @@ -1095,6 +1146,7 @@ public class MasterServer { prot.writeMessageEnd(); } + @Override public UserInfo 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!"); @@ -1105,6 +1157,7 @@ public class MasterServer { } } + @Override public void invalidateSession(java.lang.String sessionId, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); invalidateSession_call method_call = new invalidateSession_call(sessionId, resultHandler, this, ___protocolFactory, ___transport); @@ -1119,6 +1172,7 @@ public class MasterServer { this.sessionId = sessionId; } + @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(); @@ -1127,16 +1181,19 @@ public class MasterServer { 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 getUserFromToken(java.lang.String token, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); getUserFromToken_call method_call = new getUserFromToken_call(token, resultHandler, this, ___protocolFactory, ___transport); @@ -1151,6 +1208,7 @@ public class MasterServer { this.token = token; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getUserFromToken", org.apache.thrift.protocol.TMessageType.CALL, 0)); getUserFromToken_args args = new getUserFromToken_args(); @@ -1159,6 +1217,7 @@ public class MasterServer { prot.writeMessageEnd(); } + @Override public UserInfo 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!"); @@ -1169,6 +1228,7 @@ public class MasterServer { } } + @Override public void isServerAuthenticated(java.lang.String serverSessionId, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); isServerAuthenticated_call method_call = new isServerAuthenticated_call(serverSessionId, resultHandler, this, ___protocolFactory, ___transport); @@ -1183,6 +1243,7 @@ public class MasterServer { this.serverSessionId = serverSessionId; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("isServerAuthenticated", org.apache.thrift.protocol.TMessageType.CALL, 0)); isServerAuthenticated_args args = new isServerAuthenticated_args(); @@ -1191,6 +1252,7 @@ public class MasterServer { prot.writeMessageEnd(); } + @Override public java.lang.Boolean 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!"); @@ -1201,6 +1263,7 @@ public class MasterServer { } } + @Override public void startServerAuthentication(int satelliteId, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); startServerAuthentication_call method_call = new startServerAuthentication_call(satelliteId, resultHandler, this, ___protocolFactory, ___transport); @@ -1215,6 +1278,7 @@ public class MasterServer { this.satelliteId = satelliteId; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("startServerAuthentication", org.apache.thrift.protocol.TMessageType.CALL, 0)); startServerAuthentication_args args = new startServerAuthentication_args(); @@ -1223,6 +1287,7 @@ public class MasterServer { prot.writeMessageEnd(); } + @Override public java.nio.ByteBuffer 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!"); @@ -1233,6 +1298,7 @@ public class MasterServer { } } + @Override public void serverAuthenticate(int satelliteId, java.nio.ByteBuffer challengeResponse, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); serverAuthenticate_call method_call = new serverAuthenticate_call(satelliteId, challengeResponse, resultHandler, this, ___protocolFactory, ___transport); @@ -1249,6 +1315,7 @@ public class MasterServer { this.challengeResponse = challengeResponse; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("serverAuthenticate", org.apache.thrift.protocol.TMessageType.CALL, 0)); serverAuthenticate_args args = new serverAuthenticate_args(); @@ -1258,6 +1325,7 @@ public class MasterServer { prot.writeMessageEnd(); } + @Override public ServerSessionData 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!"); @@ -1268,6 +1336,7 @@ public class MasterServer { } } + @Override public void getImageData(java.lang.String serverSessionId, java.lang.String imageVersionId, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); getImageData_call method_call = new getImageData_call(serverSessionId, imageVersionId, resultHandler, this, ___protocolFactory, ___transport); @@ -1284,6 +1353,7 @@ public class MasterServer { 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("getImageData", org.apache.thrift.protocol.TMessageType.CALL, 0)); getImageData_args args = new getImageData_args(); @@ -1293,6 +1363,7 @@ public class MasterServer { prot.writeMessageEnd(); } + @Override public ImagePublishData getResult() throws 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!"); @@ -1303,6 +1374,7 @@ public class MasterServer { } } + @Override public void submitImage(java.lang.String userToken, ImagePublishData imageDescription, java.util.List blockHashes, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); submitImage_call method_call = new submitImage_call(userToken, imageDescription, blockHashes, resultHandler, this, ___protocolFactory, ___transport); @@ -1321,6 +1393,7 @@ public class MasterServer { this.blockHashes = blockHashes; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("submitImage", org.apache.thrift.protocol.TMessageType.CALL, 0)); submitImage_args args = new submitImage_args(); @@ -1331,6 +1404,7 @@ public class MasterServer { prot.writeMessageEnd(); } + @Override public TransferInformation getResult() throws TAuthorizationException, 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!"); @@ -1341,6 +1415,7 @@ public class MasterServer { } } + @Override public void registerSatellite(java.lang.String userToken, java.lang.String displayName, java.util.List addresses, java.lang.String modulus, java.lang.String exponent, java.nio.ByteBuffer certsha256, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); registerSatellite_call method_call = new registerSatellite_call(userToken, displayName, addresses, modulus, exponent, certsha256, resultHandler, this, ___protocolFactory, ___transport); @@ -1365,6 +1440,7 @@ public class MasterServer { this.certsha256 = certsha256; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("registerSatellite", org.apache.thrift.protocol.TMessageType.CALL, 0)); registerSatellite_args args = new registerSatellite_args(); @@ -1378,6 +1454,7 @@ public class MasterServer { prot.writeMessageEnd(); } + @Override public java.lang.Integer getResult() throws TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -1388,6 +1465,7 @@ public class MasterServer { } } + @Override public void updateSatellite(java.lang.String serverSessionId, java.lang.String displayName, java.util.List addresses, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); updateSatellite_call method_call = new updateSatellite_call(serverSessionId, displayName, addresses, resultHandler, this, ___protocolFactory, ___transport); @@ -1406,6 +1484,7 @@ public class MasterServer { this.addresses = addresses; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("updateSatellite", org.apache.thrift.protocol.TMessageType.CALL, 0)); updateSatellite_args args = new updateSatellite_args(); @@ -1416,6 +1495,7 @@ public class MasterServer { prot.writeMessageEnd(); } + @Override public java.lang.Boolean 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!"); @@ -1426,6 +1506,7 @@ public class MasterServer { } } + @Override public void downloadImage(java.lang.String sessionId, java.lang.String imageVersionId, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); downloadImage_call method_call = new downloadImage_call(sessionId, imageVersionId, resultHandler, this, ___protocolFactory, ___transport); @@ -1442,6 +1523,7 @@ public class MasterServer { 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("downloadImage", org.apache.thrift.protocol.TMessageType.CALL, 0)); downloadImage_args args = new downloadImage_args(); @@ -1451,6 +1533,7 @@ public class MasterServer { prot.writeMessageEnd(); } + @Override public TransferInformation getResult() throws 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!"); @@ -1461,6 +1544,7 @@ public class MasterServer { } } + @Override public void getOrganizations(org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { checkReady(); getOrganizations_call method_call = new getOrganizations_call(resultHandler, this, ___protocolFactory, ___transport); @@ -1473,6 +1557,7 @@ public class MasterServer { 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("getOrganizations", org.apache.thrift.protocol.TMessageType.CALL, 0)); getOrganizations_args args = new getOrganizations_args(); @@ -1480,6 +1565,7 @@ public class MasterServer { prot.writeMessageEnd(); } + @Override public java.util.List getResult() throws TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -1490,6 +1576,7 @@ public class MasterServer { } } + @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); @@ -1502,6 +1589,7 @@ public class MasterServer { 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(); @@ -1509,6 +1597,7 @@ public class MasterServer { prot.writeMessageEnd(); } + @Override public java.util.List getResult() throws TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -1519,6 +1608,7 @@ public class MasterServer { } } + @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); @@ -1531,6 +1621,7 @@ public class MasterServer { 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(); @@ -1538,6 +1629,7 @@ public class MasterServer { prot.writeMessageEnd(); } + @Override public java.util.List getResult() throws TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -1548,6 +1640,7 @@ public class MasterServer { } } + @Override public void getTags(long startDate, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { checkReady(); getTags_call method_call = new getTags_call(startDate, resultHandler, this, ___protocolFactory, ___transport); @@ -1562,6 +1655,7 @@ public class MasterServer { this.startDate = startDate; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getTags", org.apache.thrift.protocol.TMessageType.CALL, 0)); getTags_args args = new getTags_args(); @@ -1570,6 +1664,7 @@ public class MasterServer { prot.writeMessageEnd(); } + @Override public java.util.List getResult() throws TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -1580,6 +1675,7 @@ public class MasterServer { } } + @Override public void getSoftware(long startDate, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { checkReady(); getSoftware_call method_call = new getSoftware_call(startDate, resultHandler, this, ___protocolFactory, ___transport); @@ -1594,6 +1690,7 @@ public class MasterServer { this.startDate = startDate; } + @Override public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getSoftware", org.apache.thrift.protocol.TMessageType.CALL, 0)); getSoftware_args args = new getSoftware_args(); @@ -1602,6 +1699,7 @@ public class MasterServer { prot.writeMessageEnd(); } + @Override public java.util.List getResult() throws TInvocationException, org.apache.thrift.TException { if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { throw new java.lang.IllegalStateException("Method call not finished!"); @@ -1612,6 +1710,7 @@ public class MasterServer { } } + @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); @@ -1626,6 +1725,7 @@ public class MasterServer { 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(); @@ -1634,6 +1734,7 @@ public class MasterServer { 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!"); @@ -1689,10 +1790,12 @@ public class MasterServer { super("ping"); } + @Override public ping_args getEmptyArgsInstance() { return new ping_args(); } + @Override protected boolean isOneway() { return false; } @@ -1702,6 +1805,7 @@ public class MasterServer { return false; } + @Override public ping_result getResult(I iface, ping_args args) throws org.apache.thrift.TException { ping_result result = new ping_result(); result.success = iface.ping(); @@ -1715,10 +1819,12 @@ public class MasterServer { super("authenticate"); } + @Override public authenticate_args getEmptyArgsInstance() { return new authenticate_args(); } + @Override protected boolean isOneway() { return false; } @@ -1728,6 +1834,7 @@ public class MasterServer { return false; } + @Override public authenticate_result getResult(I iface, authenticate_args args) throws org.apache.thrift.TException { authenticate_result result = new authenticate_result(); try { @@ -1746,10 +1853,12 @@ public class MasterServer { super("localAccountLogin"); } + @Override public localAccountLogin_args getEmptyArgsInstance() { return new localAccountLogin_args(); } + @Override protected boolean isOneway() { return false; } @@ -1759,6 +1868,7 @@ public class MasterServer { return false; } + @Override public localAccountLogin_result getResult(I iface, localAccountLogin_args args) throws org.apache.thrift.TException { localAccountLogin_result result = new localAccountLogin_result(); try { @@ -1777,10 +1887,12 @@ public class MasterServer { super("setUsedSatellite"); } + @Override public setUsedSatellite_args getEmptyArgsInstance() { return new setUsedSatellite_args(); } + @Override protected boolean isOneway() { return false; } @@ -1790,6 +1902,7 @@ public class MasterServer { return false; } + @Override public setUsedSatellite_result getResult(I iface, setUsedSatellite_args args) throws org.apache.thrift.TException { setUsedSatellite_result result = new setUsedSatellite_result(); iface.setUsedSatellite(args.sessionId, args.satelliteName); @@ -1802,10 +1915,12 @@ public class MasterServer { super("findUser"); } + @Override public findUser_args getEmptyArgsInstance() { return new findUser_args(); } + @Override protected boolean isOneway() { return false; } @@ -1815,6 +1930,7 @@ public class MasterServer { return false; } + @Override public findUser_result getResult(I iface, findUser_args args) throws org.apache.thrift.TException { findUser_result result = new findUser_result(); try { @@ -1833,10 +1949,12 @@ public class MasterServer { super("getPublicImages"); } + @Override public getPublicImages_args getEmptyArgsInstance() { return new getPublicImages_args(); } + @Override protected boolean isOneway() { return false; } @@ -1846,6 +1964,7 @@ public class MasterServer { return false; } + @Override public getPublicImages_result getResult(I iface, getPublicImages_args args) throws org.apache.thrift.TException { getPublicImages_result result = new getPublicImages_result(); try { @@ -1864,10 +1983,12 @@ public class MasterServer { super("getImageDetails"); } + @Override public getImageDetails_args getEmptyArgsInstance() { return new getImageDetails_args(); } + @Override protected boolean isOneway() { return false; } @@ -1877,6 +1998,7 @@ public class MasterServer { return false; } + @Override public getImageDetails_result getResult(I iface, getImageDetails_args args) throws org.apache.thrift.TException { getImageDetails_result result = new getImageDetails_result(); try { @@ -1897,10 +2019,12 @@ public class MasterServer { super("getUser"); } + @Override public getUser_args getEmptyArgsInstance() { return new getUser_args(); } + @Override protected boolean isOneway() { return false; } @@ -1910,6 +2034,7 @@ public class MasterServer { return false; } + @Override public getUser_result getResult(I iface, getUser_args args) throws org.apache.thrift.TException { getUser_result result = new getUser_result(); try { @@ -1930,10 +2055,12 @@ public class MasterServer { super("invalidateSession"); } + @Override public invalidateSession_args getEmptyArgsInstance() { return new invalidateSession_args(); } + @Override protected boolean isOneway() { return false; } @@ -1943,6 +2070,7 @@ public class MasterServer { return false; } + @Override public invalidateSession_result getResult(I iface, invalidateSession_args args) throws org.apache.thrift.TException { invalidateSession_result result = new invalidateSession_result(); try { @@ -1959,10 +2087,12 @@ public class MasterServer { super("getUserFromToken"); } + @Override public getUserFromToken_args getEmptyArgsInstance() { return new getUserFromToken_args(); } + @Override protected boolean isOneway() { return false; } @@ -1972,6 +2102,7 @@ public class MasterServer { return false; } + @Override public getUserFromToken_result getResult(I iface, getUserFromToken_args args) throws org.apache.thrift.TException { getUserFromToken_result result = new getUserFromToken_result(); try { @@ -1988,10 +2119,12 @@ public class MasterServer { super("isServerAuthenticated"); } + @Override public isServerAuthenticated_args getEmptyArgsInstance() { return new isServerAuthenticated_args(); } + @Override protected boolean isOneway() { return false; } @@ -2001,6 +2134,7 @@ public class MasterServer { return false; } + @Override public isServerAuthenticated_result getResult(I iface, isServerAuthenticated_args args) throws org.apache.thrift.TException { isServerAuthenticated_result result = new isServerAuthenticated_result(); result.success = iface.isServerAuthenticated(args.serverSessionId); @@ -2014,10 +2148,12 @@ public class MasterServer { super("startServerAuthentication"); } + @Override public startServerAuthentication_args getEmptyArgsInstance() { return new startServerAuthentication_args(); } + @Override protected boolean isOneway() { return false; } @@ -2027,6 +2163,7 @@ public class MasterServer { return false; } + @Override public startServerAuthentication_result getResult(I iface, startServerAuthentication_args args) throws org.apache.thrift.TException { startServerAuthentication_result result = new startServerAuthentication_result(); try { @@ -2045,10 +2182,12 @@ public class MasterServer { super("serverAuthenticate"); } + @Override public serverAuthenticate_args getEmptyArgsInstance() { return new serverAuthenticate_args(); } + @Override protected boolean isOneway() { return false; } @@ -2058,6 +2197,7 @@ public class MasterServer { return false; } + @Override public serverAuthenticate_result getResult(I iface, serverAuthenticate_args args) throws org.apache.thrift.TException { serverAuthenticate_result result = new serverAuthenticate_result(); try { @@ -2076,10 +2216,12 @@ public class MasterServer { super("getImageData"); } + @Override public getImageData_args getEmptyArgsInstance() { return new getImageData_args(); } + @Override protected boolean isOneway() { return false; } @@ -2089,6 +2231,7 @@ public class MasterServer { return false; } + @Override public getImageData_result getResult(I iface, getImageData_args args) throws org.apache.thrift.TException { getImageData_result result = new getImageData_result(); try { @@ -2109,10 +2252,12 @@ public class MasterServer { super("submitImage"); } + @Override public submitImage_args getEmptyArgsInstance() { return new submitImage_args(); } + @Override protected boolean isOneway() { return false; } @@ -2122,6 +2267,7 @@ public class MasterServer { return false; } + @Override public submitImage_result getResult(I iface, submitImage_args args) throws org.apache.thrift.TException { submitImage_result result = new submitImage_result(); try { @@ -2142,10 +2288,12 @@ public class MasterServer { super("registerSatellite"); } + @Override public registerSatellite_args getEmptyArgsInstance() { return new registerSatellite_args(); } + @Override protected boolean isOneway() { return false; } @@ -2155,6 +2303,7 @@ public class MasterServer { return false; } + @Override public registerSatellite_result getResult(I iface, registerSatellite_args args) throws org.apache.thrift.TException { registerSatellite_result result = new registerSatellite_result(); try { @@ -2172,10 +2321,12 @@ public class MasterServer { super("updateSatellite"); } + @Override public updateSatellite_args getEmptyArgsInstance() { return new updateSatellite_args(); } + @Override protected boolean isOneway() { return false; } @@ -2185,6 +2336,7 @@ public class MasterServer { return false; } + @Override public updateSatellite_result getResult(I iface, updateSatellite_args args) throws org.apache.thrift.TException { updateSatellite_result result = new updateSatellite_result(); try { @@ -2204,10 +2356,12 @@ public class MasterServer { super("downloadImage"); } + @Override public downloadImage_args getEmptyArgsInstance() { return new downloadImage_args(); } + @Override protected boolean isOneway() { return false; } @@ -2217,6 +2371,7 @@ public class MasterServer { return false; } + @Override public downloadImage_result getResult(I iface, downloadImage_args args) throws org.apache.thrift.TException { downloadImage_result result = new downloadImage_result(); try { @@ -2237,10 +2392,12 @@ public class MasterServer { super("getOrganizations"); } + @Override public getOrganizations_args getEmptyArgsInstance() { return new getOrganizations_args(); } + @Override protected boolean isOneway() { return false; } @@ -2250,6 +2407,7 @@ public class MasterServer { return false; } + @Override public getOrganizations_result getResult(I iface, getOrganizations_args args) throws org.apache.thrift.TException { getOrganizations_result result = new getOrganizations_result(); try { @@ -2266,10 +2424,12 @@ public class MasterServer { super("getOperatingSystems"); } + @Override public getOperatingSystems_args getEmptyArgsInstance() { return new getOperatingSystems_args(); } + @Override protected boolean isOneway() { return false; } @@ -2279,6 +2439,7 @@ public class MasterServer { return false; } + @Override public getOperatingSystems_result getResult(I iface, getOperatingSystems_args args) throws org.apache.thrift.TException { getOperatingSystems_result result = new getOperatingSystems_result(); try { @@ -2295,10 +2456,12 @@ public class MasterServer { super("getVirtualizers"); } + @Override public getVirtualizers_args getEmptyArgsInstance() { return new getVirtualizers_args(); } + @Override protected boolean isOneway() { return false; } @@ -2308,6 +2471,7 @@ public class MasterServer { return false; } + @Override public getVirtualizers_result getResult(I iface, getVirtualizers_args args) throws org.apache.thrift.TException { getVirtualizers_result result = new getVirtualizers_result(); try { @@ -2324,10 +2488,12 @@ public class MasterServer { super("getTags"); } + @Override public getTags_args getEmptyArgsInstance() { return new getTags_args(); } + @Override protected boolean isOneway() { return false; } @@ -2337,6 +2503,7 @@ public class MasterServer { return false; } + @Override public getTags_result getResult(I iface, getTags_args args) throws org.apache.thrift.TException { getTags_result result = new getTags_result(); try { @@ -2353,10 +2520,12 @@ public class MasterServer { super("getSoftware"); } + @Override public getSoftware_args getEmptyArgsInstance() { return new getSoftware_args(); } + @Override protected boolean isOneway() { return false; } @@ -2366,6 +2535,7 @@ public class MasterServer { return false; } + @Override public getSoftware_result getResult(I iface, getSoftware_args args) throws org.apache.thrift.TException { getSoftware_result result = new getSoftware_result(); try { @@ -2382,10 +2552,12 @@ public class MasterServer { super("queryUploadStatus"); } + @Override public queryUploadStatus_args getEmptyArgsInstance() { return new queryUploadStatus_args(); } + @Override protected boolean isOneway() { return false; } @@ -2395,6 +2567,7 @@ public class MasterServer { return false; } + @Override public queryUploadStatus_result getResult(I iface, queryUploadStatus_args args) throws org.apache.thrift.TException { queryUploadStatus_result result = new queryUploadStatus_result(); try { @@ -2451,13 +2624,16 @@ public class MasterServer { super("ping"); } + @Override public ping_args getEmptyArgsInstance() { return new ping_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.Boolean o) { ping_result result = new ping_result(); result.success = o; @@ -2472,6 +2648,7 @@ public class MasterServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -2499,10 +2676,12 @@ public class MasterServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, ping_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.ping(resultHandler); } @@ -2513,13 +2692,16 @@ public class MasterServer { super("authenticate"); } + @Override public authenticate_args getEmptyArgsInstance() { return new authenticate_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(SessionData o) { authenticate_result result = new authenticate_result(); result.success = o; @@ -2533,6 +2715,7 @@ public class MasterServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -2568,10 +2751,12 @@ public class MasterServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, authenticate_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.authenticate(args.login, args.password,resultHandler); } @@ -2582,13 +2767,16 @@ public class MasterServer { super("localAccountLogin"); } + @Override public localAccountLogin_args getEmptyArgsInstance() { return new localAccountLogin_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(ClientSessionData o) { localAccountLogin_result result = new localAccountLogin_result(); result.success = o; @@ -2602,6 +2790,7 @@ public class MasterServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -2637,10 +2826,12 @@ public class MasterServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, localAccountLogin_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.localAccountLogin(args.login, args.password,resultHandler); } @@ -2651,13 +2842,16 @@ public class MasterServer { super("setUsedSatellite"); } + @Override public setUsedSatellite_args getEmptyArgsInstance() { return new setUsedSatellite_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) { setUsedSatellite_result result = new setUsedSatellite_result(); try { @@ -2670,6 +2864,7 @@ public class MasterServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -2697,10 +2892,12 @@ public class MasterServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, setUsedSatellite_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.setUsedSatellite(args.sessionId, args.satelliteName,resultHandler); } @@ -2711,13 +2908,16 @@ public class MasterServer { super("findUser"); } + @Override public findUser_args getEmptyArgsInstance() { return new findUser_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) { findUser_result result = new findUser_result(); result.success = o; @@ -2731,6 +2931,7 @@ public class MasterServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -2766,10 +2967,12 @@ public class MasterServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, findUser_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { iface.findUser(args.sessionId, args.organizationId, args.searchTerm,resultHandler); } @@ -2780,13 +2983,16 @@ public class MasterServer { super("getPublicImages"); } + @Override public getPublicImages_args getEmptyArgsInstance() { return new getPublicImages_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) { getPublicImages_result result = new getPublicImages_result(); result.success = o; @@ -2800,6 +3006,7 @@ public class MasterServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -2835,10 +3042,12 @@ public class MasterServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, getPublicImages_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { iface.getPublicImages(args.sessionId, args.page,resultHandler); } @@ -2849,13 +3058,16 @@ public class MasterServer { 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; @@ -2869,6 +3081,7 @@ public class MasterServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -2908,10 +3121,12 @@ public class MasterServer { }; } + @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.sessionId, args.imageBaseId,resultHandler); } @@ -2922,13 +3137,16 @@ public class MasterServer { super("getUser"); } + @Override public getUser_args getEmptyArgsInstance() { return new getUser_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(UserInfo o) { getUser_result result = new getUser_result(); result.success = o; @@ -2942,6 +3160,7 @@ public class MasterServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -2981,10 +3200,12 @@ public class MasterServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, getUser_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.getUser(args.userToken, args.userId,resultHandler); } @@ -2995,13 +3216,16 @@ public class MasterServer { 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 { @@ -3014,6 +3238,7 @@ public class MasterServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -3045,10 +3270,12 @@ public class MasterServer { }; } + @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.sessionId,resultHandler); } @@ -3059,13 +3286,16 @@ public class MasterServer { super("getUserFromToken"); } + @Override public getUserFromToken_args getEmptyArgsInstance() { return new getUserFromToken_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(UserInfo o) { getUserFromToken_result result = new getUserFromToken_result(); result.success = o; @@ -3079,6 +3309,7 @@ public class MasterServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -3110,10 +3341,12 @@ public class MasterServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, getUserFromToken_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.getUserFromToken(args.token,resultHandler); } @@ -3124,13 +3357,16 @@ public class MasterServer { super("isServerAuthenticated"); } + @Override public isServerAuthenticated_args getEmptyArgsInstance() { return new isServerAuthenticated_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.Boolean o) { isServerAuthenticated_result result = new isServerAuthenticated_result(); result.success = o; @@ -3145,6 +3381,7 @@ public class MasterServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -3172,10 +3409,12 @@ public class MasterServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, isServerAuthenticated_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.isServerAuthenticated(args.serverSessionId,resultHandler); } @@ -3186,13 +3425,16 @@ public class MasterServer { super("startServerAuthentication"); } + @Override public startServerAuthentication_args getEmptyArgsInstance() { return new startServerAuthentication_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) { startServerAuthentication_result result = new startServerAuthentication_result(); result.success = o; @@ -3206,6 +3448,7 @@ public class MasterServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -3241,10 +3484,12 @@ public class MasterServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, startServerAuthentication_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.startServerAuthentication(args.satelliteId,resultHandler); } @@ -3255,13 +3500,16 @@ public class MasterServer { super("serverAuthenticate"); } + @Override public serverAuthenticate_args getEmptyArgsInstance() { return new serverAuthenticate_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(ServerSessionData o) { serverAuthenticate_result result = new serverAuthenticate_result(); result.success = o; @@ -3275,6 +3523,7 @@ public class MasterServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -3310,10 +3559,12 @@ public class MasterServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, serverAuthenticate_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.serverAuthenticate(args.satelliteId, args.challengeResponse,resultHandler); } @@ -3324,13 +3575,16 @@ public class MasterServer { super("getImageData"); } + @Override public getImageData_args getEmptyArgsInstance() { return new getImageData_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(ImagePublishData o) { getImageData_result result = new getImageData_result(); result.success = o; @@ -3344,6 +3598,7 @@ public class MasterServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -3383,10 +3638,12 @@ public class MasterServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, getImageData_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.getImageData(args.serverSessionId, args.imageVersionId,resultHandler); } @@ -3397,13 +3654,16 @@ public class MasterServer { super("submitImage"); } + @Override public submitImage_args getEmptyArgsInstance() { return new submitImage_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) { submitImage_result result = new submitImage_result(); result.success = o; @@ -3417,6 +3677,7 @@ public class MasterServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -3456,10 +3717,12 @@ public class MasterServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, submitImage_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.submitImage(args.userToken, args.imageDescription, args.blockHashes,resultHandler); } @@ -3470,13 +3733,16 @@ public class MasterServer { super("registerSatellite"); } + @Override public registerSatellite_args getEmptyArgsInstance() { return new registerSatellite_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.Integer o) { registerSatellite_result result = new registerSatellite_result(); result.success = o; @@ -3491,6 +3757,7 @@ public class MasterServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -3522,10 +3789,12 @@ public class MasterServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, registerSatellite_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.registerSatellite(args.userToken, args.displayName, args.addresses, args.modulus, args.exponent, args.certsha256,resultHandler); } @@ -3536,13 +3805,16 @@ public class MasterServer { super("updateSatellite"); } + @Override public updateSatellite_args getEmptyArgsInstance() { return new updateSatellite_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.Boolean o) { updateSatellite_result result = new updateSatellite_result(); result.success = o; @@ -3557,6 +3829,7 @@ public class MasterServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -3592,10 +3865,12 @@ public class MasterServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, updateSatellite_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.updateSatellite(args.serverSessionId, args.displayName, args.addresses,resultHandler); } @@ -3606,13 +3881,16 @@ public class MasterServer { super("downloadImage"); } + @Override public downloadImage_args getEmptyArgsInstance() { return new downloadImage_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) { downloadImage_result result = new downloadImage_result(); result.success = o; @@ -3626,6 +3904,7 @@ public class MasterServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -3665,10 +3944,12 @@ public class MasterServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, downloadImage_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { iface.downloadImage(args.sessionId, args.imageVersionId,resultHandler); } @@ -3679,13 +3960,16 @@ public class MasterServer { super("getOrganizations"); } + @Override public getOrganizations_args getEmptyArgsInstance() { return new getOrganizations_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) { getOrganizations_result result = new getOrganizations_result(); result.success = o; @@ -3699,6 +3983,7 @@ public class MasterServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -3730,10 +4015,12 @@ public class MasterServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, getOrganizations_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { iface.getOrganizations(resultHandler); } @@ -3744,13 +4031,16 @@ public class MasterServer { 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; @@ -3764,6 +4054,7 @@ public class MasterServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -3795,10 +4086,12 @@ public class MasterServer { }; } + @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); } @@ -3809,13 +4102,16 @@ public class MasterServer { 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; @@ -3829,6 +4125,7 @@ public class MasterServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -3860,10 +4157,12 @@ public class MasterServer { }; } + @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); } @@ -3874,13 +4173,16 @@ public class MasterServer { super("getTags"); } + @Override public getTags_args getEmptyArgsInstance() { return new getTags_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) { getTags_result result = new getTags_result(); result.success = o; @@ -3894,6 +4196,7 @@ public class MasterServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -3925,10 +4228,12 @@ public class MasterServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, getTags_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { iface.getTags(args.startDate,resultHandler); } @@ -3939,13 +4244,16 @@ public class MasterServer { super("getSoftware"); } + @Override public getSoftware_args getEmptyArgsInstance() { return new getSoftware_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) { getSoftware_result result = new getSoftware_result(); result.success = o; @@ -3959,6 +4267,7 @@ public class MasterServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -3990,10 +4299,12 @@ public class MasterServer { }; } + @Override protected boolean isOneway() { return false; } + @Override public void start(I iface, getSoftware_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { iface.getSoftware(args.startDate,resultHandler); } @@ -4004,13 +4315,16 @@ public class MasterServer { 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; @@ -4024,6 +4338,7 @@ public class MasterServer { onError(e); } } + @Override public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; @@ -4055,10 +4370,12 @@ public class MasterServer { }; } + @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); } @@ -4066,6 +4383,7 @@ public class MasterServer { } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class ping_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("ping_args"); @@ -4123,10 +4441,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -4147,6 +4467,7 @@ public class MasterServer { public ping_args(ping_args other) { } + @Override public ping_args deepCopy() { return new ping_args(this); } @@ -4155,12 +4476,14 @@ public class MasterServer { 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) { } @@ -4168,6 +4491,7 @@ public class MasterServer { } /** 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(); @@ -4213,14 +4537,17 @@ public class MasterServer { } @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); } @@ -4256,6 +4583,7 @@ public class MasterServer { } private static class ping_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public ping_argsStandardScheme getScheme() { return new ping_argsStandardScheme(); } @@ -4263,6 +4591,7 @@ public class MasterServer { private static class ping_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, ping_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -4284,6 +4613,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, ping_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -4295,6 +4625,7 @@ public class MasterServer { } private static class ping_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public ping_argsTupleScheme getScheme() { return new ping_argsTupleScheme(); } @@ -4318,6 +4649,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class ping_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("ping_result"); @@ -4379,10 +4711,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -4419,6 +4753,7 @@ public class MasterServer { this.success = other.success; } + @Override public ping_result deepCopy() { return new ping_result(this); } @@ -4452,6 +4787,7 @@ public class MasterServer { __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: @@ -4466,6 +4802,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -4476,6 +4813,7 @@ public class MasterServer { } /** 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(); @@ -4544,10 +4882,12 @@ public class MasterServer { } @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); } @@ -4592,6 +4932,7 @@ public class MasterServer { } private static class ping_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public ping_resultStandardScheme getScheme() { return new ping_resultStandardScheme(); } @@ -4599,6 +4940,7 @@ public class MasterServer { private static class ping_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, ping_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -4628,6 +4970,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, ping_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -4644,6 +4987,7 @@ public class MasterServer { } private static class ping_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public ping_resultTupleScheme getScheme() { return new ping_resultTupleScheme(); } @@ -4680,6 +5024,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class authenticate_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("authenticate_args"); @@ -4746,10 +5091,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -4791,6 +5138,7 @@ public class MasterServer { } } + @Override public authenticate_args deepCopy() { return new authenticate_args(this); } @@ -4851,6 +5199,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case LOGIN: @@ -4873,6 +5222,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case LOGIN: @@ -4886,6 +5236,7 @@ public class MasterServer { } /** 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(); @@ -4981,14 +5332,17 @@ public class MasterServer { } @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); } @@ -5039,6 +5393,7 @@ public class MasterServer { } private static class authenticate_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public authenticate_argsStandardScheme getScheme() { return new authenticate_argsStandardScheme(); } @@ -5046,6 +5401,7 @@ public class MasterServer { private static class authenticate_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, authenticate_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -5083,6 +5439,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, authenticate_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -5104,6 +5461,7 @@ public class MasterServer { } private static class authenticate_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public authenticate_argsTupleScheme getScheme() { return new authenticate_argsTupleScheme(); } @@ -5150,6 +5508,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class authenticate_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("authenticate_result"); @@ -5221,10 +5580,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -5273,6 +5634,7 @@ public class MasterServer { } } + @Override public authenticate_result deepCopy() { return new authenticate_result(this); } @@ -5359,6 +5721,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -5389,6 +5752,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -5405,6 +5769,7 @@ public class MasterServer { } /** 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(); @@ -5525,10 +5890,12 @@ public class MasterServer { } @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); } @@ -5594,6 +5961,7 @@ public class MasterServer { } private static class authenticate_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public authenticate_resultStandardScheme getScheme() { return new authenticate_resultStandardScheme(); } @@ -5601,6 +5969,7 @@ public class MasterServer { private static class authenticate_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, authenticate_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -5649,6 +6018,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, authenticate_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -5675,6 +6045,7 @@ public class MasterServer { } private static class authenticate_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public authenticate_resultTupleScheme getScheme() { return new authenticate_resultTupleScheme(); } @@ -5734,6 +6105,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class localAccountLogin_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("localAccountLogin_args"); @@ -5800,10 +6172,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -5845,6 +6219,7 @@ public class MasterServer { } } + @Override public localAccountLogin_args deepCopy() { return new localAccountLogin_args(this); } @@ -5905,6 +6280,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case LOGIN: @@ -5927,6 +6303,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case LOGIN: @@ -5940,6 +6317,7 @@ public class MasterServer { } /** 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(); @@ -6035,14 +6413,17 @@ public class MasterServer { } @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); } @@ -6093,6 +6474,7 @@ public class MasterServer { } private static class localAccountLogin_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public localAccountLogin_argsStandardScheme getScheme() { return new localAccountLogin_argsStandardScheme(); } @@ -6100,6 +6482,7 @@ public class MasterServer { private static class localAccountLogin_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, localAccountLogin_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -6137,6 +6520,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, localAccountLogin_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -6158,6 +6542,7 @@ public class MasterServer { } private static class localAccountLogin_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public localAccountLogin_argsTupleScheme getScheme() { return new localAccountLogin_argsTupleScheme(); } @@ -6204,6 +6589,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class localAccountLogin_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("localAccountLogin_result"); @@ -6275,10 +6661,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -6327,6 +6715,7 @@ public class MasterServer { } } + @Override public localAccountLogin_result deepCopy() { return new localAccountLogin_result(this); } @@ -6413,6 +6802,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -6443,6 +6833,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -6459,6 +6850,7 @@ public class MasterServer { } /** 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(); @@ -6579,10 +6971,12 @@ public class MasterServer { } @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); } @@ -6648,6 +7042,7 @@ public class MasterServer { } private static class localAccountLogin_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public localAccountLogin_resultStandardScheme getScheme() { return new localAccountLogin_resultStandardScheme(); } @@ -6655,6 +7050,7 @@ public class MasterServer { private static class localAccountLogin_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, localAccountLogin_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -6703,6 +7099,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, localAccountLogin_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -6729,6 +7126,7 @@ public class MasterServer { } private static class localAccountLogin_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public localAccountLogin_resultTupleScheme getScheme() { return new localAccountLogin_resultTupleScheme(); } @@ -6788,6 +7186,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class setUsedSatellite_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("setUsedSatellite_args"); @@ -6854,10 +7253,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -6899,6 +7300,7 @@ public class MasterServer { } } + @Override public setUsedSatellite_args deepCopy() { return new setUsedSatellite_args(this); } @@ -6959,6 +7361,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SESSION_ID: @@ -6981,6 +7384,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SESSION_ID: @@ -6994,6 +7398,7 @@ public class MasterServer { } /** 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(); @@ -7089,14 +7494,17 @@ public class MasterServer { } @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); } @@ -7147,6 +7555,7 @@ public class MasterServer { } private static class setUsedSatellite_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setUsedSatellite_argsStandardScheme getScheme() { return new setUsedSatellite_argsStandardScheme(); } @@ -7154,6 +7563,7 @@ public class MasterServer { private static class setUsedSatellite_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, setUsedSatellite_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -7191,6 +7601,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, setUsedSatellite_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -7212,6 +7623,7 @@ public class MasterServer { } private static class setUsedSatellite_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setUsedSatellite_argsTupleScheme getScheme() { return new setUsedSatellite_argsTupleScheme(); } @@ -7258,6 +7670,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class setUsedSatellite_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("setUsedSatellite_result"); @@ -7315,10 +7728,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -7339,6 +7754,7 @@ public class MasterServer { public setUsedSatellite_result(setUsedSatellite_result other) { } + @Override public setUsedSatellite_result deepCopy() { return new setUsedSatellite_result(this); } @@ -7347,12 +7763,14 @@ public class MasterServer { 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) { } @@ -7360,6 +7778,7 @@ public class MasterServer { } /** 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(); @@ -7405,10 +7824,12 @@ public class MasterServer { } @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); } @@ -7448,6 +7869,7 @@ public class MasterServer { } private static class setUsedSatellite_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setUsedSatellite_resultStandardScheme getScheme() { return new setUsedSatellite_resultStandardScheme(); } @@ -7455,6 +7877,7 @@ public class MasterServer { private static class setUsedSatellite_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, setUsedSatellite_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -7476,6 +7899,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, setUsedSatellite_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -7487,6 +7911,7 @@ public class MasterServer { } private static class setUsedSatellite_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public setUsedSatellite_resultTupleScheme getScheme() { return new setUsedSatellite_resultTupleScheme(); } @@ -7510,6 +7935,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class findUser_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("findUser_args"); @@ -7581,10 +8007,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -7633,6 +8061,7 @@ public class MasterServer { } } + @Override public findUser_args deepCopy() { return new findUser_args(this); } @@ -7719,6 +8148,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SESSION_ID: @@ -7749,6 +8179,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SESSION_ID: @@ -7765,6 +8196,7 @@ public class MasterServer { } /** 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(); @@ -7885,14 +8317,17 @@ public class MasterServer { } @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); } @@ -7951,6 +8386,7 @@ public class MasterServer { } private static class findUser_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public findUser_argsStandardScheme getScheme() { return new findUser_argsStandardScheme(); } @@ -7958,6 +8394,7 @@ public class MasterServer { private static class findUser_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, findUser_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -8003,6 +8440,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, findUser_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -8029,6 +8467,7 @@ public class MasterServer { } private static class findUser_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public findUser_argsTupleScheme getScheme() { return new findUser_argsTupleScheme(); } @@ -8085,6 +8524,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class findUser_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("findUser_result"); @@ -8156,10 +8596,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -8213,6 +8655,7 @@ public class MasterServer { } } + @Override public findUser_result deepCopy() { return new findUser_result(this); } @@ -8315,6 +8758,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -8345,6 +8789,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -8361,6 +8806,7 @@ public class MasterServer { } /** 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(); @@ -8481,10 +8927,12 @@ public class MasterServer { } @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); } @@ -8547,6 +8995,7 @@ public class MasterServer { } private static class findUser_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public findUser_resultStandardScheme getScheme() { return new findUser_resultStandardScheme(); } @@ -8554,6 +9003,7 @@ public class MasterServer { private static class findUser_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, findUser_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -8612,6 +9062,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, findUser_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -8645,6 +9096,7 @@ public class MasterServer { } private static class findUser_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public findUser_resultTupleScheme getScheme() { return new findUser_resultTupleScheme(); } @@ -8719,6 +9171,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getPublicImages_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("getPublicImages_args"); @@ -8785,10 +9238,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -8832,6 +9287,7 @@ public class MasterServer { this.page = other.page; } + @Override public getPublicImages_args deepCopy() { return new getPublicImages_args(this); } @@ -8891,6 +9347,7 @@ public class MasterServer { __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 SESSION_ID: @@ -8913,6 +9370,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SESSION_ID: @@ -8926,6 +9384,7 @@ public class MasterServer { } /** 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(); @@ -9019,14 +9478,17 @@ public class MasterServer { } @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); } @@ -9075,6 +9537,7 @@ public class MasterServer { } private static class getPublicImages_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getPublicImages_argsStandardScheme getScheme() { return new getPublicImages_argsStandardScheme(); } @@ -9082,6 +9545,7 @@ public class MasterServer { private static class getPublicImages_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getPublicImages_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -9119,6 +9583,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getPublicImages_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -9138,6 +9603,7 @@ public class MasterServer { } private static class getPublicImages_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getPublicImages_argsTupleScheme getScheme() { return new getPublicImages_argsTupleScheme(); } @@ -9184,6 +9650,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getPublicImages_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("getPublicImages_result"); @@ -9255,10 +9722,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -9312,6 +9781,7 @@ public class MasterServer { } } + @Override public getPublicImages_result deepCopy() { return new getPublicImages_result(this); } @@ -9414,6 +9884,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -9444,6 +9915,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -9460,6 +9932,7 @@ public class MasterServer { } /** 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(); @@ -9580,10 +10053,12 @@ public class MasterServer { } @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); } @@ -9646,6 +10121,7 @@ public class MasterServer { } private static class getPublicImages_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getPublicImages_resultStandardScheme getScheme() { return new getPublicImages_resultStandardScheme(); } @@ -9653,6 +10129,7 @@ public class MasterServer { private static class getPublicImages_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getPublicImages_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -9711,6 +10188,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getPublicImages_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -9744,6 +10222,7 @@ public class MasterServer { } private static class getPublicImages_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getPublicImages_resultTupleScheme getScheme() { return new getPublicImages_resultTupleScheme(); } @@ -9818,6 +10297,7 @@ public class MasterServer { } } + @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"); @@ -9884,10 +10364,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -9929,6 +10411,7 @@ public class MasterServer { } } + @Override public getImageDetails_args deepCopy() { return new getImageDetails_args(this); } @@ -9989,6 +10472,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SESSION_ID: @@ -10011,6 +10495,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SESSION_ID: @@ -10024,6 +10509,7 @@ public class MasterServer { } /** 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(); @@ -10119,14 +10605,17 @@ public class MasterServer { } @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); } @@ -10177,6 +10666,7 @@ public class MasterServer { } private static class getImageDetails_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getImageDetails_argsStandardScheme getScheme() { return new getImageDetails_argsStandardScheme(); } @@ -10184,6 +10674,7 @@ public class MasterServer { 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(); @@ -10221,6 +10712,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getImageDetails_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -10242,6 +10734,7 @@ public class MasterServer { } private static class getImageDetails_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getImageDetails_argsTupleScheme getScheme() { return new getImageDetails_argsTupleScheme(); } @@ -10288,6 +10781,7 @@ public class MasterServer { } } + @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"); @@ -10364,10 +10858,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -10423,6 +10919,7 @@ public class MasterServer { } } + @Override public getImageDetails_result deepCopy() { return new getImageDetails_result(this); } @@ -10535,6 +11032,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -10573,6 +11071,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -10592,6 +11091,7 @@ public class MasterServer { } /** 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(); @@ -10737,10 +11237,12 @@ public class MasterServer { } @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); } @@ -10814,6 +11316,7 @@ public class MasterServer { } private static class getImageDetails_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getImageDetails_resultStandardScheme getScheme() { return new getImageDetails_resultStandardScheme(); } @@ -10821,6 +11324,7 @@ public class MasterServer { 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(); @@ -10878,6 +11382,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getImageDetails_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -10909,6 +11414,7 @@ public class MasterServer { } private static class getImageDetails_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getImageDetails_resultTupleScheme getScheme() { return new getImageDetails_resultTupleScheme(); } @@ -10979,6 +11485,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getUser_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("getUser_args"); @@ -11045,10 +11552,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -11090,6 +11599,7 @@ public class MasterServer { } } + @Override public getUser_args deepCopy() { return new getUser_args(this); } @@ -11150,6 +11660,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -11172,6 +11683,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -11185,6 +11697,7 @@ public class MasterServer { } /** 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(); @@ -11280,14 +11793,17 @@ public class MasterServer { } @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); } @@ -11338,6 +11854,7 @@ public class MasterServer { } private static class getUser_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getUser_argsStandardScheme getScheme() { return new getUser_argsStandardScheme(); } @@ -11345,6 +11862,7 @@ public class MasterServer { private static class getUser_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getUser_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -11382,6 +11900,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getUser_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -11403,6 +11922,7 @@ public class MasterServer { } private static class getUser_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getUser_argsTupleScheme getScheme() { return new getUser_argsTupleScheme(); } @@ -11449,6 +11969,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getUser_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("getUser_result"); @@ -11525,10 +12046,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -11584,6 +12107,7 @@ public class MasterServer { } } + @Override public getUser_result deepCopy() { return new getUser_result(this); } @@ -11696,6 +12220,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -11734,6 +12259,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -11753,6 +12279,7 @@ public class MasterServer { } /** 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(); @@ -11898,10 +12425,12 @@ public class MasterServer { } @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); } @@ -11975,6 +12504,7 @@ public class MasterServer { } private static class getUser_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getUser_resultStandardScheme getScheme() { return new getUser_resultStandardScheme(); } @@ -11982,6 +12512,7 @@ public class MasterServer { private static class getUser_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getUser_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -12039,6 +12570,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getUser_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -12070,6 +12602,7 @@ public class MasterServer { } private static class getUser_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getUser_resultTupleScheme getScheme() { return new getUser_resultTupleScheme(); } @@ -12140,6 +12673,7 @@ public class MasterServer { } } + @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"); @@ -12201,10 +12735,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -12239,6 +12775,7 @@ public class MasterServer { } } + @Override public invalidateSession_args deepCopy() { return new invalidateSession_args(this); } @@ -12273,6 +12810,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SESSION_ID: @@ -12287,6 +12825,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SESSION_ID: @@ -12297,6 +12836,7 @@ public class MasterServer { } /** 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(); @@ -12367,14 +12907,17 @@ public class MasterServer { } @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); } @@ -12417,6 +12960,7 @@ public class MasterServer { } private static class invalidateSession_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public invalidateSession_argsStandardScheme getScheme() { return new invalidateSession_argsStandardScheme(); } @@ -12424,6 +12968,7 @@ public class MasterServer { 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(); @@ -12453,6 +12998,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, invalidateSession_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -12469,6 +13015,7 @@ public class MasterServer { } private static class invalidateSession_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public invalidateSession_argsTupleScheme getScheme() { return new invalidateSession_argsTupleScheme(); } @@ -12505,6 +13052,7 @@ public class MasterServer { } } + @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"); @@ -12566,10 +13114,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -12604,6 +13154,7 @@ public class MasterServer { } } + @Override public invalidateSession_result deepCopy() { return new invalidateSession_result(this); } @@ -12638,6 +13189,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case EX: @@ -12652,6 +13204,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case EX: @@ -12662,6 +13215,7 @@ public class MasterServer { } /** 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(); @@ -12732,10 +13286,12 @@ public class MasterServer { } @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); } @@ -12782,6 +13338,7 @@ public class MasterServer { } private static class invalidateSession_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public invalidateSession_resultStandardScheme getScheme() { return new invalidateSession_resultStandardScheme(); } @@ -12789,6 +13346,7 @@ public class MasterServer { 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(); @@ -12819,6 +13377,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, invalidateSession_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -12835,6 +13394,7 @@ public class MasterServer { } private static class invalidateSession_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public invalidateSession_resultTupleScheme getScheme() { return new invalidateSession_resultTupleScheme(); } @@ -12872,6 +13432,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getUserFromToken_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("getUserFromToken_args"); @@ -12933,10 +13494,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -12971,6 +13534,7 @@ public class MasterServer { } } + @Override public getUserFromToken_args deepCopy() { return new getUserFromToken_args(this); } @@ -13005,6 +13569,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case TOKEN: @@ -13019,6 +13584,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case TOKEN: @@ -13029,6 +13595,7 @@ public class MasterServer { } /** 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(); @@ -13099,14 +13666,17 @@ public class MasterServer { } @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); } @@ -13149,6 +13719,7 @@ public class MasterServer { } private static class getUserFromToken_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getUserFromToken_argsStandardScheme getScheme() { return new getUserFromToken_argsStandardScheme(); } @@ -13156,6 +13727,7 @@ public class MasterServer { private static class getUserFromToken_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getUserFromToken_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -13185,6 +13757,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getUserFromToken_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -13201,6 +13774,7 @@ public class MasterServer { } private static class getUserFromToken_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getUserFromToken_argsTupleScheme getScheme() { return new getUserFromToken_argsTupleScheme(); } @@ -13237,6 +13811,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getUserFromToken_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("getUserFromToken_result"); @@ -13303,10 +13878,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -13348,6 +13925,7 @@ public class MasterServer { } } + @Override public getUserFromToken_result deepCopy() { return new getUserFromToken_result(this); } @@ -13408,6 +13986,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -13430,6 +14009,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -13443,6 +14023,7 @@ public class MasterServer { } /** 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(); @@ -13538,10 +14119,12 @@ public class MasterServer { } @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); } @@ -13599,6 +14182,7 @@ public class MasterServer { } private static class getUserFromToken_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getUserFromToken_resultStandardScheme getScheme() { return new getUserFromToken_resultStandardScheme(); } @@ -13606,6 +14190,7 @@ public class MasterServer { private static class getUserFromToken_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getUserFromToken_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -13645,6 +14230,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getUserFromToken_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -13666,6 +14252,7 @@ public class MasterServer { } private static class getUserFromToken_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getUserFromToken_resultTupleScheme getScheme() { return new getUserFromToken_resultTupleScheme(); } @@ -13714,6 +14301,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class isServerAuthenticated_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("isServerAuthenticated_args"); @@ -13775,10 +14363,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -13813,6 +14403,7 @@ public class MasterServer { } } + @Override public isServerAuthenticated_args deepCopy() { return new isServerAuthenticated_args(this); } @@ -13847,6 +14438,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SERVER_SESSION_ID: @@ -13861,6 +14453,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SERVER_SESSION_ID: @@ -13871,6 +14464,7 @@ public class MasterServer { } /** 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(); @@ -13941,14 +14535,17 @@ public class MasterServer { } @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); } @@ -13991,6 +14588,7 @@ public class MasterServer { } private static class isServerAuthenticated_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public isServerAuthenticated_argsStandardScheme getScheme() { return new isServerAuthenticated_argsStandardScheme(); } @@ -13998,6 +14596,7 @@ public class MasterServer { private static class isServerAuthenticated_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, isServerAuthenticated_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -14027,6 +14626,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, isServerAuthenticated_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -14043,6 +14643,7 @@ public class MasterServer { } private static class isServerAuthenticated_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public isServerAuthenticated_argsTupleScheme getScheme() { return new isServerAuthenticated_argsTupleScheme(); } @@ -14079,6 +14680,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class isServerAuthenticated_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("isServerAuthenticated_result"); @@ -14140,10 +14742,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -14180,6 +14784,7 @@ public class MasterServer { this.success = other.success; } + @Override public isServerAuthenticated_result deepCopy() { return new isServerAuthenticated_result(this); } @@ -14213,6 +14818,7 @@ public class MasterServer { __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: @@ -14227,6 +14833,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -14237,6 +14844,7 @@ public class MasterServer { } /** 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(); @@ -14305,10 +14913,12 @@ public class MasterServer { } @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); } @@ -14353,6 +14963,7 @@ public class MasterServer { } private static class isServerAuthenticated_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public isServerAuthenticated_resultStandardScheme getScheme() { return new isServerAuthenticated_resultStandardScheme(); } @@ -14360,6 +14971,7 @@ public class MasterServer { private static class isServerAuthenticated_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, isServerAuthenticated_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -14389,6 +15001,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, isServerAuthenticated_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -14405,6 +15018,7 @@ public class MasterServer { } private static class isServerAuthenticated_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public isServerAuthenticated_resultTupleScheme getScheme() { return new isServerAuthenticated_resultTupleScheme(); } @@ -14441,6 +15055,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class startServerAuthentication_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("startServerAuthentication_args"); @@ -14502,10 +15117,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -14542,6 +15159,7 @@ public class MasterServer { this.satelliteId = other.satelliteId; } + @Override public startServerAuthentication_args deepCopy() { return new startServerAuthentication_args(this); } @@ -14575,6 +15193,7 @@ public class MasterServer { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SATELLITEID_ISSET_ID, value); } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SATELLITE_ID: @@ -14589,6 +15208,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SATELLITE_ID: @@ -14599,6 +15219,7 @@ public class MasterServer { } /** 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(); @@ -14667,14 +15288,17 @@ public class MasterServer { } @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); } @@ -14715,6 +15339,7 @@ public class MasterServer { } private static class startServerAuthentication_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public startServerAuthentication_argsStandardScheme getScheme() { return new startServerAuthentication_argsStandardScheme(); } @@ -14722,6 +15347,7 @@ public class MasterServer { private static class startServerAuthentication_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, startServerAuthentication_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -14751,6 +15377,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, startServerAuthentication_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -14765,6 +15392,7 @@ public class MasterServer { } private static class startServerAuthentication_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public startServerAuthentication_argsTupleScheme getScheme() { return new startServerAuthentication_argsTupleScheme(); } @@ -14801,6 +15429,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class startServerAuthentication_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("startServerAuthentication_result"); @@ -14872,10 +15501,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -14924,6 +15555,7 @@ public class MasterServer { } } + @Override public startServerAuthentication_result deepCopy() { return new startServerAuthentication_result(this); } @@ -15019,6 +15651,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -15053,6 +15686,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -15069,6 +15703,7 @@ public class MasterServer { } /** 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(); @@ -15189,10 +15824,12 @@ public class MasterServer { } @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); } @@ -15255,6 +15892,7 @@ public class MasterServer { } private static class startServerAuthentication_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public startServerAuthentication_resultStandardScheme getScheme() { return new startServerAuthentication_resultStandardScheme(); } @@ -15262,6 +15900,7 @@ public class MasterServer { private static class startServerAuthentication_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, startServerAuthentication_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -15309,6 +15948,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, startServerAuthentication_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -15335,6 +15975,7 @@ public class MasterServer { } private static class startServerAuthentication_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public startServerAuthentication_resultTupleScheme getScheme() { return new startServerAuthentication_resultTupleScheme(); } @@ -15393,6 +16034,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class serverAuthenticate_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("serverAuthenticate_args"); @@ -15459,10 +16101,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -15506,6 +16150,7 @@ public class MasterServer { } } + @Override public serverAuthenticate_args deepCopy() { return new serverAuthenticate_args(this); } @@ -15574,6 +16219,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SATELLITE_ID: @@ -15600,6 +16246,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SATELLITE_ID: @@ -15613,6 +16260,7 @@ public class MasterServer { } /** 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(); @@ -15706,14 +16354,17 @@ public class MasterServer { } @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); } @@ -15762,6 +16413,7 @@ public class MasterServer { } private static class serverAuthenticate_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public serverAuthenticate_argsStandardScheme getScheme() { return new serverAuthenticate_argsStandardScheme(); } @@ -15769,6 +16421,7 @@ public class MasterServer { private static class serverAuthenticate_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, serverAuthenticate_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -15806,6 +16459,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, serverAuthenticate_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -15825,6 +16479,7 @@ public class MasterServer { } private static class serverAuthenticate_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public serverAuthenticate_argsTupleScheme getScheme() { return new serverAuthenticate_argsTupleScheme(); } @@ -15871,6 +16526,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class serverAuthenticate_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("serverAuthenticate_result"); @@ -15942,10 +16598,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -15994,6 +16652,7 @@ public class MasterServer { } } + @Override public serverAuthenticate_result deepCopy() { return new serverAuthenticate_result(this); } @@ -16080,6 +16739,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -16110,6 +16770,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -16126,6 +16787,7 @@ public class MasterServer { } /** 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(); @@ -16246,10 +16908,12 @@ public class MasterServer { } @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); } @@ -16315,6 +16979,7 @@ public class MasterServer { } private static class serverAuthenticate_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public serverAuthenticate_resultStandardScheme getScheme() { return new serverAuthenticate_resultStandardScheme(); } @@ -16322,6 +16987,7 @@ public class MasterServer { private static class serverAuthenticate_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, serverAuthenticate_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -16370,6 +17036,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, serverAuthenticate_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -16396,6 +17063,7 @@ public class MasterServer { } private static class serverAuthenticate_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public serverAuthenticate_resultTupleScheme getScheme() { return new serverAuthenticate_resultTupleScheme(); } @@ -16455,6 +17123,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getImageData_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("getImageData_args"); @@ -16521,10 +17190,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -16566,6 +17237,7 @@ public class MasterServer { } } + @Override public getImageData_args deepCopy() { return new getImageData_args(this); } @@ -16626,6 +17298,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SERVER_SESSION_ID: @@ -16648,6 +17321,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SERVER_SESSION_ID: @@ -16661,6 +17335,7 @@ public class MasterServer { } /** 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(); @@ -16756,14 +17431,17 @@ public class MasterServer { } @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); } @@ -16814,6 +17492,7 @@ public class MasterServer { } private static class getImageData_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getImageData_argsStandardScheme getScheme() { return new getImageData_argsStandardScheme(); } @@ -16821,6 +17500,7 @@ public class MasterServer { private static class getImageData_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getImageData_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -16858,6 +17538,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getImageData_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -16879,6 +17560,7 @@ public class MasterServer { } private static class getImageData_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getImageData_argsTupleScheme getScheme() { return new getImageData_argsTupleScheme(); } @@ -16925,6 +17607,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getImageData_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("getImageData_result"); @@ -17001,10 +17684,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -17060,6 +17745,7 @@ public class MasterServer { } } + @Override public getImageData_result deepCopy() { return new getImageData_result(this); } @@ -17172,6 +17858,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -17210,6 +17897,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -17229,6 +17917,7 @@ public class MasterServer { } /** 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(); @@ -17374,10 +18063,12 @@ public class MasterServer { } @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); } @@ -17451,6 +18142,7 @@ public class MasterServer { } private static class getImageData_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getImageData_resultStandardScheme getScheme() { return new getImageData_resultStandardScheme(); } @@ -17458,6 +18150,7 @@ public class MasterServer { private static class getImageData_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getImageData_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -17515,6 +18208,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getImageData_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -17546,6 +18240,7 @@ public class MasterServer { } private static class getImageData_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getImageData_resultTupleScheme getScheme() { return new getImageData_resultTupleScheme(); } @@ -17616,6 +18311,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class submitImage_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("submitImage_args"); @@ -17687,10 +18383,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -17741,6 +18439,7 @@ public class MasterServer { } } + @Override public submitImage_args deepCopy() { return new submitImage_args(this); } @@ -17843,6 +18542,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -17873,6 +18573,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -17889,6 +18590,7 @@ public class MasterServer { } /** 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(); @@ -18009,14 +18711,17 @@ public class MasterServer { } @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); } @@ -18078,6 +18783,7 @@ public class MasterServer { } private static class submitImage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public submitImage_argsStandardScheme getScheme() { return new submitImage_argsStandardScheme(); } @@ -18085,6 +18791,7 @@ public class MasterServer { private static class submitImage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, submitImage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -18141,6 +18848,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, submitImage_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -18174,6 +18882,7 @@ public class MasterServer { } private static class submitImage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public submitImage_argsTupleScheme getScheme() { return new submitImage_argsTupleScheme(); } @@ -18246,6 +18955,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class submitImage_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("submitImage_result"); @@ -18322,10 +19032,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -18381,6 +19093,7 @@ public class MasterServer { } } + @Override public submitImage_result deepCopy() { return new submitImage_result(this); } @@ -18493,6 +19206,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -18531,6 +19245,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -18550,6 +19265,7 @@ public class MasterServer { } /** 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(); @@ -18695,10 +19411,12 @@ public class MasterServer { } @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); } @@ -18772,6 +19490,7 @@ public class MasterServer { } private static class submitImage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public submitImage_resultStandardScheme getScheme() { return new submitImage_resultStandardScheme(); } @@ -18779,6 +19498,7 @@ public class MasterServer { private static class submitImage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, submitImage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -18836,6 +19556,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, submitImage_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -18867,6 +19588,7 @@ public class MasterServer { } private static class submitImage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public submitImage_resultTupleScheme getScheme() { return new submitImage_resultTupleScheme(); } @@ -18937,6 +19659,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class registerSatellite_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("registerSatellite_args"); @@ -19023,10 +19746,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -19098,6 +19823,7 @@ public class MasterServer { } } + @Override public registerSatellite_args deepCopy() { return new registerSatellite_args(this); } @@ -19287,6 +20013,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case USER_TOKEN: @@ -19345,6 +20072,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case USER_TOKEN: @@ -19370,6 +20098,7 @@ public class MasterServer { } /** 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(); @@ -19565,14 +20294,17 @@ public class MasterServer { } @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); } @@ -19655,6 +20387,7 @@ public class MasterServer { } private static class registerSatellite_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public registerSatellite_argsStandardScheme getScheme() { return new registerSatellite_argsStandardScheme(); } @@ -19662,6 +20395,7 @@ public class MasterServer { private static class registerSatellite_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, registerSatellite_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -19741,6 +20475,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, registerSatellite_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -19789,6 +20524,7 @@ public class MasterServer { } private static class registerSatellite_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public registerSatellite_argsTupleScheme getScheme() { return new registerSatellite_argsTupleScheme(); } @@ -19890,6 +20626,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class registerSatellite_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("registerSatellite_result"); @@ -19956,10 +20693,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -20003,6 +20742,7 @@ public class MasterServer { } } + @Override public registerSatellite_result deepCopy() { return new registerSatellite_result(this); } @@ -20062,6 +20802,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -20084,6 +20825,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -20097,6 +20839,7 @@ public class MasterServer { } /** 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(); @@ -20190,10 +20933,12 @@ public class MasterServer { } @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); } @@ -20246,6 +20991,7 @@ public class MasterServer { } private static class registerSatellite_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public registerSatellite_resultStandardScheme getScheme() { return new registerSatellite_resultStandardScheme(); } @@ -20253,6 +20999,7 @@ public class MasterServer { private static class registerSatellite_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, registerSatellite_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -20291,6 +21038,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, registerSatellite_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -20312,6 +21060,7 @@ public class MasterServer { } private static class registerSatellite_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public registerSatellite_resultTupleScheme getScheme() { return new registerSatellite_resultTupleScheme(); } @@ -20359,6 +21108,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class updateSatellite_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("updateSatellite_args"); @@ -20430,10 +21180,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -20484,6 +21236,7 @@ public class MasterServer { } } + @Override public updateSatellite_args deepCopy() { return new updateSatellite_args(this); } @@ -20586,6 +21339,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SERVER_SESSION_ID: @@ -20616,6 +21370,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SERVER_SESSION_ID: @@ -20632,6 +21387,7 @@ public class MasterServer { } /** 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(); @@ -20752,14 +21508,17 @@ public class MasterServer { } @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); } @@ -20818,6 +21577,7 @@ public class MasterServer { } private static class updateSatellite_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public updateSatellite_argsStandardScheme getScheme() { return new updateSatellite_argsStandardScheme(); } @@ -20825,6 +21585,7 @@ public class MasterServer { private static class updateSatellite_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, updateSatellite_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -20880,6 +21641,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, updateSatellite_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -20913,6 +21675,7 @@ public class MasterServer { } private static class updateSatellite_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public updateSatellite_argsTupleScheme getScheme() { return new updateSatellite_argsTupleScheme(); } @@ -20984,6 +21747,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class updateSatellite_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("updateSatellite_result"); @@ -21055,10 +21819,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -21109,6 +21875,7 @@ public class MasterServer { } } + @Override public updateSatellite_result deepCopy() { return new updateSatellite_result(this); } @@ -21194,6 +21961,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -21224,6 +21992,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -21240,6 +22009,7 @@ public class MasterServer { } /** 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(); @@ -21358,10 +22128,12 @@ public class MasterServer { } @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); } @@ -21422,6 +22194,7 @@ public class MasterServer { } private static class updateSatellite_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public updateSatellite_resultStandardScheme getScheme() { return new updateSatellite_resultStandardScheme(); } @@ -21429,6 +22202,7 @@ public class MasterServer { private static class updateSatellite_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, updateSatellite_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -21476,6 +22250,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, updateSatellite_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -21502,6 +22277,7 @@ public class MasterServer { } private static class updateSatellite_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public updateSatellite_resultTupleScheme getScheme() { return new updateSatellite_resultTupleScheme(); } @@ -21560,6 +22336,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class downloadImage_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("downloadImage_args"); @@ -21626,10 +22403,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -21671,6 +22450,7 @@ public class MasterServer { } } + @Override public downloadImage_args deepCopy() { return new downloadImage_args(this); } @@ -21731,6 +22511,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SESSION_ID: @@ -21753,6 +22534,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SESSION_ID: @@ -21766,6 +22548,7 @@ public class MasterServer { } /** 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(); @@ -21861,14 +22644,17 @@ public class MasterServer { } @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); } @@ -21919,6 +22705,7 @@ public class MasterServer { } private static class downloadImage_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public downloadImage_argsStandardScheme getScheme() { return new downloadImage_argsStandardScheme(); } @@ -21926,6 +22713,7 @@ public class MasterServer { private static class downloadImage_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, downloadImage_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -21963,6 +22751,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, downloadImage_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -21984,6 +22773,7 @@ public class MasterServer { } private static class downloadImage_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public downloadImage_argsTupleScheme getScheme() { return new downloadImage_argsTupleScheme(); } @@ -22030,6 +22820,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class downloadImage_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("downloadImage_result"); @@ -22106,10 +22897,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -22165,6 +22958,7 @@ public class MasterServer { } } + @Override public downloadImage_result deepCopy() { return new downloadImage_result(this); } @@ -22277,6 +23071,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -22315,6 +23110,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -22334,6 +23130,7 @@ public class MasterServer { } /** 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(); @@ -22479,10 +23276,12 @@ public class MasterServer { } @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); } @@ -22556,6 +23355,7 @@ public class MasterServer { } private static class downloadImage_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public downloadImage_resultStandardScheme getScheme() { return new downloadImage_resultStandardScheme(); } @@ -22563,6 +23363,7 @@ public class MasterServer { private static class downloadImage_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, downloadImage_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -22620,6 +23421,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, downloadImage_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -22651,6 +23453,7 @@ public class MasterServer { } private static class downloadImage_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public downloadImage_resultTupleScheme getScheme() { return new downloadImage_resultTupleScheme(); } @@ -22721,6 +23524,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getOrganizations_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("getOrganizations_args"); @@ -22778,10 +23582,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -22802,6 +23608,7 @@ public class MasterServer { public getOrganizations_args(getOrganizations_args other) { } + @Override public getOrganizations_args deepCopy() { return new getOrganizations_args(this); } @@ -22810,12 +23617,14 @@ public class MasterServer { 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) { } @@ -22823,6 +23632,7 @@ public class MasterServer { } /** 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(); @@ -22868,14 +23678,17 @@ public class MasterServer { } @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); } @@ -22911,6 +23724,7 @@ public class MasterServer { } private static class getOrganizations_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getOrganizations_argsStandardScheme getScheme() { return new getOrganizations_argsStandardScheme(); } @@ -22918,6 +23732,7 @@ public class MasterServer { private static class getOrganizations_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getOrganizations_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -22939,6 +23754,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getOrganizations_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -22950,6 +23766,7 @@ public class MasterServer { } private static class getOrganizations_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getOrganizations_argsTupleScheme getScheme() { return new getOrganizations_argsTupleScheme(); } @@ -22973,6 +23790,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getOrganizations_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("getOrganizations_result"); @@ -23039,10 +23857,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -23089,6 +23909,7 @@ public class MasterServer { } } + @Override public getOrganizations_result deepCopy() { return new getOrganizations_result(this); } @@ -23165,6 +23986,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -23187,6 +24009,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -23200,6 +24023,7 @@ public class MasterServer { } /** 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(); @@ -23295,10 +24119,12 @@ public class MasterServer { } @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); } @@ -23353,6 +24179,7 @@ public class MasterServer { } private static class getOrganizations_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getOrganizations_resultStandardScheme getScheme() { return new getOrganizations_resultStandardScheme(); } @@ -23360,6 +24187,7 @@ public class MasterServer { private static class getOrganizations_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getOrganizations_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -23409,6 +24237,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getOrganizations_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -23437,6 +24266,7 @@ public class MasterServer { } private static class getOrganizations_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getOrganizations_resultTupleScheme getScheme() { return new getOrganizations_resultTupleScheme(); } @@ -23500,6 +24330,7 @@ public class MasterServer { } } + @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"); @@ -23557,10 +24388,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -23581,6 +24414,7 @@ public class MasterServer { public getOperatingSystems_args(getOperatingSystems_args other) { } + @Override public getOperatingSystems_args deepCopy() { return new getOperatingSystems_args(this); } @@ -23589,12 +24423,14 @@ public class MasterServer { 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) { } @@ -23602,6 +24438,7 @@ public class MasterServer { } /** 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(); @@ -23647,14 +24484,17 @@ public class MasterServer { } @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); } @@ -23690,6 +24530,7 @@ public class MasterServer { } private static class getOperatingSystems_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getOperatingSystems_argsStandardScheme getScheme() { return new getOperatingSystems_argsStandardScheme(); } @@ -23697,6 +24538,7 @@ public class MasterServer { 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(); @@ -23718,6 +24560,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getOperatingSystems_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -23729,6 +24572,7 @@ public class MasterServer { } private static class getOperatingSystems_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getOperatingSystems_argsTupleScheme getScheme() { return new getOperatingSystems_argsTupleScheme(); } @@ -23752,6 +24596,7 @@ public class MasterServer { } } + @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"); @@ -23818,10 +24663,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -23868,6 +24715,7 @@ public class MasterServer { } } + @Override public getOperatingSystems_result deepCopy() { return new getOperatingSystems_result(this); } @@ -23944,6 +24792,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -23966,6 +24815,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -23979,6 +24829,7 @@ public class MasterServer { } /** 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(); @@ -24074,10 +24925,12 @@ public class MasterServer { } @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); } @@ -24132,6 +24985,7 @@ public class MasterServer { } private static class getOperatingSystems_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getOperatingSystems_resultStandardScheme getScheme() { return new getOperatingSystems_resultStandardScheme(); } @@ -24139,6 +24993,7 @@ public class MasterServer { 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(); @@ -24188,6 +25043,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getOperatingSystems_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -24216,6 +25072,7 @@ public class MasterServer { } private static class getOperatingSystems_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getOperatingSystems_resultTupleScheme getScheme() { return new getOperatingSystems_resultTupleScheme(); } @@ -24279,6 +25136,7 @@ public class MasterServer { } } + @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"); @@ -24336,10 +25194,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -24360,6 +25220,7 @@ public class MasterServer { public getVirtualizers_args(getVirtualizers_args other) { } + @Override public getVirtualizers_args deepCopy() { return new getVirtualizers_args(this); } @@ -24368,12 +25229,14 @@ public class MasterServer { 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) { } @@ -24381,6 +25244,7 @@ public class MasterServer { } /** 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(); @@ -24426,14 +25290,17 @@ public class MasterServer { } @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); } @@ -24469,6 +25336,7 @@ public class MasterServer { } private static class getVirtualizers_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getVirtualizers_argsStandardScheme getScheme() { return new getVirtualizers_argsStandardScheme(); } @@ -24476,6 +25344,7 @@ public class MasterServer { 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(); @@ -24497,6 +25366,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getVirtualizers_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -24508,6 +25378,7 @@ public class MasterServer { } private static class getVirtualizers_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getVirtualizers_argsTupleScheme getScheme() { return new getVirtualizers_argsTupleScheme(); } @@ -24531,6 +25402,7 @@ public class MasterServer { } } + @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"); @@ -24597,10 +25469,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -24647,6 +25521,7 @@ public class MasterServer { } } + @Override public getVirtualizers_result deepCopy() { return new getVirtualizers_result(this); } @@ -24723,6 +25598,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -24745,6 +25621,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -24758,6 +25635,7 @@ public class MasterServer { } /** 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(); @@ -24853,10 +25731,12 @@ public class MasterServer { } @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); } @@ -24911,6 +25791,7 @@ public class MasterServer { } private static class getVirtualizers_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getVirtualizers_resultStandardScheme getScheme() { return new getVirtualizers_resultStandardScheme(); } @@ -24918,6 +25799,7 @@ public class MasterServer { 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(); @@ -24967,6 +25849,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getVirtualizers_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -24995,6 +25878,7 @@ public class MasterServer { } private static class getVirtualizers_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getVirtualizers_resultTupleScheme getScheme() { return new getVirtualizers_resultTupleScheme(); } @@ -25058,6 +25942,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getTags_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("getTags_args"); @@ -25119,10 +26004,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -25159,6 +26046,7 @@ public class MasterServer { this.startDate = other.startDate; } + @Override public getTags_args deepCopy() { return new getTags_args(this); } @@ -25192,6 +26080,7 @@ public class MasterServer { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __STARTDATE_ISSET_ID, value); } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case START_DATE: @@ -25206,6 +26095,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case START_DATE: @@ -25216,6 +26106,7 @@ public class MasterServer { } /** 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(); @@ -25284,14 +26175,17 @@ public class MasterServer { } @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); } @@ -25332,6 +26226,7 @@ public class MasterServer { } private static class getTags_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getTags_argsStandardScheme getScheme() { return new getTags_argsStandardScheme(); } @@ -25339,6 +26234,7 @@ public class MasterServer { private static class getTags_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getTags_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -25368,6 +26264,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getTags_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -25382,6 +26279,7 @@ public class MasterServer { } private static class getTags_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getTags_argsTupleScheme getScheme() { return new getTags_argsTupleScheme(); } @@ -25418,6 +26316,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getTags_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("getTags_result"); @@ -25484,10 +26383,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -25534,6 +26435,7 @@ public class MasterServer { } } + @Override public getTags_result deepCopy() { return new getTags_result(this); } @@ -25610,6 +26512,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -25632,6 +26535,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -25645,6 +26549,7 @@ public class MasterServer { } /** 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(); @@ -25740,10 +26645,12 @@ public class MasterServer { } @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); } @@ -25798,6 +26705,7 @@ public class MasterServer { } private static class getTags_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getTags_resultStandardScheme getScheme() { return new getTags_resultStandardScheme(); } @@ -25805,6 +26713,7 @@ public class MasterServer { private static class getTags_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getTags_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -25854,6 +26763,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getTags_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -25882,6 +26792,7 @@ public class MasterServer { } private static class getTags_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getTags_resultTupleScheme getScheme() { return new getTags_resultTupleScheme(); } @@ -25945,6 +26856,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getSoftware_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("getSoftware_args"); @@ -26006,10 +26918,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -26046,6 +26960,7 @@ public class MasterServer { this.startDate = other.startDate; } + @Override public getSoftware_args deepCopy() { return new getSoftware_args(this); } @@ -26079,6 +26994,7 @@ public class MasterServer { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __STARTDATE_ISSET_ID, value); } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case START_DATE: @@ -26093,6 +27009,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case START_DATE: @@ -26103,6 +27020,7 @@ public class MasterServer { } /** 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(); @@ -26171,14 +27089,17 @@ public class MasterServer { } @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); } @@ -26219,6 +27140,7 @@ public class MasterServer { } private static class getSoftware_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getSoftware_argsStandardScheme getScheme() { return new getSoftware_argsStandardScheme(); } @@ -26226,6 +27148,7 @@ public class MasterServer { private static class getSoftware_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getSoftware_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -26255,6 +27178,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getSoftware_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -26269,6 +27193,7 @@ public class MasterServer { } private static class getSoftware_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getSoftware_argsTupleScheme getScheme() { return new getSoftware_argsTupleScheme(); } @@ -26305,6 +27230,7 @@ public class MasterServer { } } + @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) public static class getSoftware_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("getSoftware_result"); @@ -26371,10 +27297,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -26421,6 +27349,7 @@ public class MasterServer { } } + @Override public getSoftware_result deepCopy() { return new getSoftware_result(this); } @@ -26497,6 +27426,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -26519,6 +27449,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -26532,6 +27463,7 @@ public class MasterServer { } /** 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(); @@ -26627,10 +27559,12 @@ public class MasterServer { } @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); } @@ -26685,6 +27619,7 @@ public class MasterServer { } private static class getSoftware_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getSoftware_resultStandardScheme getScheme() { return new getSoftware_resultStandardScheme(); } @@ -26692,6 +27627,7 @@ public class MasterServer { private static class getSoftware_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, getSoftware_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -26741,6 +27677,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, getSoftware_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -26769,6 +27706,7 @@ public class MasterServer { } private static class getSoftware_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public getSoftware_resultTupleScheme getScheme() { return new getSoftware_resultTupleScheme(); } @@ -26832,6 +27770,7 @@ public class MasterServer { } } + @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"); @@ -26893,10 +27832,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -26931,6 +27872,7 @@ public class MasterServer { } } + @Override public queryUploadStatus_args deepCopy() { return new queryUploadStatus_args(this); } @@ -26965,6 +27907,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case UPLOAD_TOKEN: @@ -26979,6 +27922,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case UPLOAD_TOKEN: @@ -26989,6 +27933,7 @@ public class MasterServer { } /** 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(); @@ -27059,14 +28004,17 @@ public class MasterServer { } @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); } @@ -27109,6 +28057,7 @@ public class MasterServer { } private static class queryUploadStatus_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public queryUploadStatus_argsStandardScheme getScheme() { return new queryUploadStatus_argsStandardScheme(); } @@ -27116,6 +28065,7 @@ public class MasterServer { 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(); @@ -27145,6 +28095,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, queryUploadStatus_args struct) throws org.apache.thrift.TException { struct.validate(); @@ -27161,6 +28112,7 @@ public class MasterServer { } private static class queryUploadStatus_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public queryUploadStatus_argsTupleScheme getScheme() { return new queryUploadStatus_argsTupleScheme(); } @@ -27197,6 +28149,7 @@ public class MasterServer { } } + @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"); @@ -27263,10 +28216,12 @@ public class MasterServer { _fieldName = fieldName; } + @Override public short getThriftFieldId() { return _thriftId; } + @Override public java.lang.String getFieldName() { return _fieldName; } @@ -27308,6 +28263,7 @@ public class MasterServer { } } + @Override public queryUploadStatus_result deepCopy() { return new queryUploadStatus_result(this); } @@ -27368,6 +28324,7 @@ public class MasterServer { } } + @Override public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { case SUCCESS: @@ -27390,6 +28347,7 @@ public class MasterServer { } @org.apache.thrift.annotation.Nullable + @Override public java.lang.Object getFieldValue(_Fields field) { switch (field) { case SUCCESS: @@ -27403,6 +28361,7 @@ public class MasterServer { } /** 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(); @@ -27498,10 +28457,12 @@ public class MasterServer { } @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); } @@ -27559,6 +28520,7 @@ public class MasterServer { } private static class queryUploadStatus_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public queryUploadStatus_resultStandardScheme getScheme() { return new queryUploadStatus_resultStandardScheme(); } @@ -27566,6 +28528,7 @@ public class MasterServer { 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(); @@ -27605,6 +28568,7 @@ public class MasterServer { struct.validate(); } + @Override public void write(org.apache.thrift.protocol.TProtocol oprot, queryUploadStatus_result struct) throws org.apache.thrift.TException { struct.validate(); @@ -27626,6 +28590,7 @@ public class MasterServer { } private static class queryUploadStatus_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + @Override public queryUploadStatus_resultTupleScheme getScheme() { return new queryUploadStatus_resultTupleScheme(); } diff --git a/src/main/java/org/openslx/bwlp/thrift/iface/SatelliteConfig.java b/src/main/java/org/openslx/bwlp/thrift/iface/SatelliteConfig.java index b412de9..d4fd8c8 100644 --- a/src/main/java/org/openslx/bwlp/thrift/iface/SatelliteConfig.java +++ b/src/main/java/org/openslx/bwlp/thrift/iface/SatelliteConfig.java @@ -1,5 +1,5 @@ /** - * 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 @@ -7,7 +7,7 @@ package org.openslx.bwlp.thrift.iface; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.15.0)", date = "2021-12-17") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.17.0)", date = "2022-11-03") public class SatelliteConfig 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("SatelliteConfig"); @@ -22,6 +22,7 @@ public class SatelliteConfig implements org.apache.thrift.TBase byName = new java.util.HashMap(); @@ -96,6 +99,8 @@ public class SatelliteConfig implements org.apache.thrift.TBase metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); @@ -172,6 +180,8 @@ public class SatelliteConfig implements org.apache.thrift.TBase { + @Override public void read(org.apache.thrift.protocol.TProtocol iprot, SatelliteConfig struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); @@ -1188,6 +1275,14 @@ public class SatelliteConfig implements org.apache.thrift.TBase { 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(); } diff --git a/src/main/thrift/bwlp.thrift b/src/main/thrift/bwlp.thrift index 9b4c008..6ba7938 100644 --- a/src/main/thrift/bwlp.thrift +++ b/src/main/thrift/bwlp.thrift @@ -425,6 +425,8 @@ struct SatelliteConfig { 10: optional SscMode serverSideCopy, // Students are allowed to download non-restricted images? 11: optional bool allowStudentDownload, + // Size limit for VM uploads (0 = unlimited) + 12: optional i64 vmSizeLimit, } struct SatelliteStatus { diff --git a/thrift-compile.sh b/thrift-compile.sh index 6c75de1..8eef59b 100755 --- a/thrift-compile.sh +++ b/thrift-compile.sh @@ -1,7 +1,8 @@ #!/bin/bash -if ! thrift --version | grep -q "0\.9\.3"; then - echo -n "Warning! You should be using Thrift 0.9.3, but you have $(thrift --version), do you still want to continue? [y/N]: " +WANT_VER="0.17.0" +if ! thrift --version | grep -qF "$WANT_VER"; then + echo -n "Warning! You should be using Thrift $WANT_VER, but you have $(thrift --version), do you still want to continue? [y/N]: " read choice if [ "x${choice:0:1}" != "xy" ]; then echo "Aborting!" @@ -18,8 +19,8 @@ if thrift --gen java src/main/thrift/bwlp.thrift; then bn=$(basename "$file") if [ -e "src/main/java/org/openslx/bwlp/thrift/iface/$bn" ]; then diff -q \ - <(sed -r 's/_(i|iter|elem|list|map|key|val)[0-9]+/\1x/g;/@Generated/d' "$file") \ - <(sed -r 's/_(i|iter|elem|list|map|key|val)[0-9]+/\1x/g;/@Generated/d' "src/main/java/org/openslx/bwlp/thrift/iface/$bn") + <(sed -r 's/_(i|iter|elem|list|map|key|val)[0-9]+/\1x/g;/Autogenerated by|@Generated|@Override/d' "$file") \ + <(sed -r 's/_(i|iter|elem|list|map|key|val)[0-9]+/\1x/g;/Autogenerated by|@Generated|@Override/d' "src/main/java/org/openslx/bwlp/thrift/iface/$bn") ret=$? [ "$ret" = 0 ] && continue fi -- cgit v1.2.3-55-g7522