summaryrefslogtreecommitdiffstats
path: root/src/main/java/org
diff options
context:
space:
mode:
authorSimon Rettberg2015-08-27 18:08:25 +0200
committerSimon Rettberg2015-08-27 18:08:25 +0200
commit0bd6a575c6d6e7d63cd490b131e626356e938202 (patch)
tree52c0d6dd819103418816ec3d9adcff5759b0aa38 /src/main/java/org
parentMinor tweaks to filetransfer/chunklist related classes (diff)
downloadmaster-sync-shared-0bd6a575c6d6e7d63cd490b131e626356e938202.tar.gz
master-sync-shared-0bd6a575c6d6e7d63cd490b131e626356e938202.tar.xz
master-sync-shared-0bd6a575c6d6e7d63cd490b131e626356e938202.zip
Thrift API changes
Diffstat (limited to 'src/main/java/org')
-rw-r--r--src/main/java/org/openslx/bwlp/thrift/iface/InvocationError.java (renamed from src/main/java/org/openslx/bwlp/thrift/iface/ImageDataError.java)28
-rw-r--r--src/main/java/org/openslx/bwlp/thrift/iface/MasterServer.java2211
-rw-r--r--src/main/java/org/openslx/bwlp/thrift/iface/SatelliteServer.java4212
-rw-r--r--src/main/java/org/openslx/bwlp/thrift/iface/SatelliteStatus.java480
-rw-r--r--src/main/java/org/openslx/bwlp/thrift/iface/SatelliteUserConfig.java (renamed from src/main/java/org/openslx/bwlp/thrift/iface/TInternalServerError.java)160
-rw-r--r--src/main/java/org/openslx/bwlp/thrift/iface/TInvocationException.java (renamed from src/main/java/org/openslx/bwlp/thrift/iface/TImageDataException.java)80
6 files changed, 6149 insertions, 1022 deletions
diff --git a/src/main/java/org/openslx/bwlp/thrift/iface/ImageDataError.java b/src/main/java/org/openslx/bwlp/thrift/iface/InvocationError.java
index c0ce32f..e94bd60 100644
--- a/src/main/java/org/openslx/bwlp/thrift/iface/ImageDataError.java
+++ b/src/main/java/org/openslx/bwlp/thrift/iface/InvocationError.java
@@ -11,14 +11,18 @@ import java.util.Map;
import java.util.HashMap;
import org.apache.thrift.TEnum;
-public enum ImageDataError implements org.apache.thrift.TEnum {
- INVALID_DATA(0),
- UNKNOWN_IMAGE(1),
- INVALID_SHARE_MODE(2);
+public enum InvocationError implements org.apache.thrift.TEnum {
+ MISSING_DATA(0),
+ INVALID_DATA(1),
+ UNKNOWN_IMAGE(2),
+ UNKNOWN_USER(3),
+ UNKNOWN_LECTURE(4),
+ INVALID_SHARE_MODE(5),
+ INTERNAL_SERVER_ERROR(6);
private final int value;
- private ImageDataError(int value) {
+ private InvocationError(int value) {
this.value = value;
}
@@ -33,14 +37,22 @@ public enum ImageDataError implements org.apache.thrift.TEnum {
* Find a the enum type by its integer value, as defined in the Thrift IDL.
* @return null if the value is not found.
*/
- public static ImageDataError findByValue(int value) {
+ public static InvocationError findByValue(int value) {
switch (value) {
case 0:
- return INVALID_DATA;
+ return MISSING_DATA;
case 1:
- return UNKNOWN_IMAGE;
+ return INVALID_DATA;
case 2:
+ return UNKNOWN_IMAGE;
+ case 3:
+ return UNKNOWN_USER;
+ case 4:
+ return UNKNOWN_LECTURE;
+ case 5:
return INVALID_SHARE_MODE;
+ case 6:
+ return INTERNAL_SERVER_ERROR;
default:
return null;
}
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 c473028..88fa213 100644
--- a/src/main/java/org/openslx/bwlp/thrift/iface/MasterServer.java
+++ b/src/main/java/org/openslx/bwlp/thrift/iface/MasterServer.java
@@ -38,39 +38,41 @@ public class MasterServer {
public boolean ping() throws org.apache.thrift.TException;
- public SessionData authenticate(String login, String password) throws TAuthorizationException, org.apache.thrift.TException;
+ public SessionData authenticate(String login, String password) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException;
- public ClientSessionData localAccountLogin(String login, String password) throws TAuthorizationException, org.apache.thrift.TException;
+ public ClientSessionData localAccountLogin(String login, String password) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException;
- public List<UserInfo> findUser(String sessionId, String organizationId, String searchTerm) throws TAuthorizationException, org.apache.thrift.TException;
+ public List<UserInfo> findUser(String sessionId, String organizationId, String searchTerm) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException;
- public List<ImagePublishData> getPublicImages(String sessionId, int page) throws TAuthorizationException, org.apache.thrift.TException;
+ public List<ImagePublishData> getPublicImages(String sessionId, int page) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException;
+
+ public void invalidateSession(String sessionId) throws TInvalidTokenException, org.apache.thrift.TException;
public UserInfo getUserFromToken(String token) throws TInvalidTokenException, org.apache.thrift.TException;
public boolean isServerAuthenticated(String serverSessionId) throws org.apache.thrift.TException;
- public ByteBuffer startServerAuthentication(String organizationId) throws TAuthorizationException, org.apache.thrift.TException;
+ public ByteBuffer startServerAuthentication(String organizationId) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException;
- public ServerSessionData serverAuthenticate(String organizationId, ByteBuffer challengeResponse) throws TAuthorizationException, org.apache.thrift.TException;
+ public ServerSessionData serverAuthenticate(String organizationId, ByteBuffer challengeResponse) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException;
- public TransferInformation submitImage(String serverSessionId, ImagePublishData imageDescription, List<ByteBuffer> blockHashes) throws TAuthorizationException, TImageDataException, TTransferRejectedException, org.apache.thrift.TException;
+ public TransferInformation submitImage(String serverSessionId, ImagePublishData imageDescription, List<ByteBuffer> blockHashes) throws TAuthorizationException, TInvocationException, TTransferRejectedException, org.apache.thrift.TException;
- public TransferInformation getImage(String serverSessionId, String imageVersionId) throws TAuthorizationException, TImageDataException, org.apache.thrift.TException;
+ public TransferInformation getImage(String serverSessionId, String imageVersionId) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException;
- public boolean registerSatellite(String organizationId, String address, String modulus, String exponent) throws org.apache.thrift.TException;
+ public boolean registerSatellite(String organizationId, String address, String modulus, String exponent) throws TInvocationException, org.apache.thrift.TException;
- public boolean updateSatelliteAddress(String serverSessionId, String address) throws org.apache.thrift.TException;
+ public boolean updateSatelliteAddress(String serverSessionId, String address) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException;
- public List<Organization> getOrganizations() throws TInternalServerError, org.apache.thrift.TException;
+ public List<Organization> getOrganizations() throws TInvocationException, org.apache.thrift.TException;
- public List<OperatingSystem> getOperatingSystems() throws TInternalServerError, org.apache.thrift.TException;
+ public List<OperatingSystem> getOperatingSystems() throws TInvocationException, org.apache.thrift.TException;
- public List<Virtualizer> getVirtualizers() throws TInternalServerError, org.apache.thrift.TException;
+ public List<Virtualizer> getVirtualizers() throws TInvocationException, org.apache.thrift.TException;
- public List<MasterTag> getTags(long startDate) throws TInternalServerError, org.apache.thrift.TException;
+ public List<MasterTag> getTags(long startDate) throws TInvocationException, org.apache.thrift.TException;
- public List<MasterSoftware> getSoftware(long startDate) throws TInternalServerError, org.apache.thrift.TException;
+ public List<MasterSoftware> getSoftware(long startDate) throws TInvocationException, org.apache.thrift.TException;
}
@@ -86,6 +88,8 @@ public class MasterServer {
public void getPublicImages(String sessionId, int page, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
+ public void invalidateSession(String sessionId, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
+
public void getUserFromToken(String token, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
public void isServerAuthenticated(String serverSessionId, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
@@ -156,7 +160,7 @@ public class MasterServer {
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "ping failed: unknown result");
}
- public SessionData authenticate(String login, String password) throws TAuthorizationException, org.apache.thrift.TException
+ public SessionData authenticate(String login, String password) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
send_authenticate(login, password);
return recv_authenticate();
@@ -170,7 +174,7 @@ public class MasterServer {
sendBase("authenticate", args);
}
- public SessionData recv_authenticate() throws TAuthorizationException, org.apache.thrift.TException
+ public SessionData recv_authenticate() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
authenticate_result result = new authenticate_result();
receiveBase(result, "authenticate");
@@ -180,10 +184,13 @@ public class MasterServer {
if (result.failure != null) {
throw result.failure;
}
+ if (result.error != null) {
+ throw result.error;
+ }
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "authenticate failed: unknown result");
}
- public ClientSessionData localAccountLogin(String login, String password) throws TAuthorizationException, org.apache.thrift.TException
+ public ClientSessionData localAccountLogin(String login, String password) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
send_localAccountLogin(login, password);
return recv_localAccountLogin();
@@ -197,7 +204,7 @@ public class MasterServer {
sendBase("localAccountLogin", args);
}
- public ClientSessionData recv_localAccountLogin() throws TAuthorizationException, org.apache.thrift.TException
+ public ClientSessionData recv_localAccountLogin() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
localAccountLogin_result result = new localAccountLogin_result();
receiveBase(result, "localAccountLogin");
@@ -207,10 +214,13 @@ public class MasterServer {
if (result.failure != null) {
throw result.failure;
}
+ if (result.error != null) {
+ throw result.error;
+ }
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "localAccountLogin failed: unknown result");
}
- public List<UserInfo> findUser(String sessionId, String organizationId, String searchTerm) throws TAuthorizationException, org.apache.thrift.TException
+ public List<UserInfo> findUser(String sessionId, String organizationId, String searchTerm) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
send_findUser(sessionId, organizationId, searchTerm);
return recv_findUser();
@@ -225,7 +235,7 @@ public class MasterServer {
sendBase("findUser", args);
}
- public List<UserInfo> recv_findUser() throws TAuthorizationException, org.apache.thrift.TException
+ public List<UserInfo> recv_findUser() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
findUser_result result = new findUser_result();
receiveBase(result, "findUser");
@@ -235,10 +245,13 @@ public class MasterServer {
if (result.failure != null) {
throw result.failure;
}
+ if (result.error != null) {
+ throw result.error;
+ }
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "findUser failed: unknown result");
}
- public List<ImagePublishData> getPublicImages(String sessionId, int page) throws TAuthorizationException, org.apache.thrift.TException
+ public List<ImagePublishData> getPublicImages(String sessionId, int page) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
send_getPublicImages(sessionId, page);
return recv_getPublicImages();
@@ -252,7 +265,7 @@ public class MasterServer {
sendBase("getPublicImages", args);
}
- public List<ImagePublishData> recv_getPublicImages() throws TAuthorizationException, org.apache.thrift.TException
+ public List<ImagePublishData> recv_getPublicImages() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
getPublicImages_result result = new getPublicImages_result();
receiveBase(result, "getPublicImages");
@@ -262,9 +275,35 @@ public class MasterServer {
if (result.failure != null) {
throw result.failure;
}
+ if (result.error != null) {
+ throw result.error;
+ }
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getPublicImages failed: unknown result");
}
+ public void invalidateSession(String sessionId) throws TInvalidTokenException, org.apache.thrift.TException
+ {
+ send_invalidateSession(sessionId);
+ recv_invalidateSession();
+ }
+
+ public void send_invalidateSession(String sessionId) throws org.apache.thrift.TException
+ {
+ invalidateSession_args args = new invalidateSession_args();
+ args.setSessionId(sessionId);
+ sendBase("invalidateSession", args);
+ }
+
+ public void recv_invalidateSession() throws TInvalidTokenException, org.apache.thrift.TException
+ {
+ invalidateSession_result result = new invalidateSession_result();
+ receiveBase(result, "invalidateSession");
+ if (result.ex != null) {
+ throw result.ex;
+ }
+ return;
+ }
+
public UserInfo getUserFromToken(String token) throws TInvalidTokenException, org.apache.thrift.TException
{
send_getUserFromToken(token);
@@ -314,7 +353,7 @@ public class MasterServer {
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "isServerAuthenticated failed: unknown result");
}
- public ByteBuffer startServerAuthentication(String organizationId) throws TAuthorizationException, org.apache.thrift.TException
+ public ByteBuffer startServerAuthentication(String organizationId) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
send_startServerAuthentication(organizationId);
return recv_startServerAuthentication();
@@ -327,7 +366,7 @@ public class MasterServer {
sendBase("startServerAuthentication", args);
}
- public ByteBuffer recv_startServerAuthentication() throws TAuthorizationException, org.apache.thrift.TException
+ public ByteBuffer recv_startServerAuthentication() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
startServerAuthentication_result result = new startServerAuthentication_result();
receiveBase(result, "startServerAuthentication");
@@ -337,10 +376,13 @@ public class MasterServer {
if (result.failure != null) {
throw result.failure;
}
+ if (result.error != null) {
+ throw result.error;
+ }
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "startServerAuthentication failed: unknown result");
}
- public ServerSessionData serverAuthenticate(String organizationId, ByteBuffer challengeResponse) throws TAuthorizationException, org.apache.thrift.TException
+ public ServerSessionData serverAuthenticate(String organizationId, ByteBuffer challengeResponse) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
send_serverAuthenticate(organizationId, challengeResponse);
return recv_serverAuthenticate();
@@ -354,7 +396,7 @@ public class MasterServer {
sendBase("serverAuthenticate", args);
}
- public ServerSessionData recv_serverAuthenticate() throws TAuthorizationException, org.apache.thrift.TException
+ public ServerSessionData recv_serverAuthenticate() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
serverAuthenticate_result result = new serverAuthenticate_result();
receiveBase(result, "serverAuthenticate");
@@ -364,10 +406,13 @@ public class MasterServer {
if (result.failure != null) {
throw result.failure;
}
+ if (result.errr != null) {
+ throw result.errr;
+ }
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "serverAuthenticate failed: unknown result");
}
- public TransferInformation submitImage(String serverSessionId, ImagePublishData imageDescription, List<ByteBuffer> blockHashes) throws TAuthorizationException, TImageDataException, TTransferRejectedException, org.apache.thrift.TException
+ public TransferInformation submitImage(String serverSessionId, ImagePublishData imageDescription, List<ByteBuffer> blockHashes) throws TAuthorizationException, TInvocationException, TTransferRejectedException, org.apache.thrift.TException
{
send_submitImage(serverSessionId, imageDescription, blockHashes);
return recv_submitImage();
@@ -382,7 +427,7 @@ public class MasterServer {
sendBase("submitImage", args);
}
- public TransferInformation recv_submitImage() throws TAuthorizationException, TImageDataException, TTransferRejectedException, org.apache.thrift.TException
+ public TransferInformation recv_submitImage() throws TAuthorizationException, TInvocationException, TTransferRejectedException, org.apache.thrift.TException
{
submitImage_result result = new submitImage_result();
receiveBase(result, "submitImage");
@@ -401,7 +446,7 @@ public class MasterServer {
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "submitImage failed: unknown result");
}
- public TransferInformation getImage(String serverSessionId, String imageVersionId) throws TAuthorizationException, TImageDataException, org.apache.thrift.TException
+ public TransferInformation getImage(String serverSessionId, String imageVersionId) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
send_getImage(serverSessionId, imageVersionId);
return recv_getImage();
@@ -415,7 +460,7 @@ public class MasterServer {
sendBase("getImage", args);
}
- public TransferInformation recv_getImage() throws TAuthorizationException, TImageDataException, org.apache.thrift.TException
+ public TransferInformation recv_getImage() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
getImage_result result = new getImage_result();
receiveBase(result, "getImage");
@@ -431,7 +476,7 @@ public class MasterServer {
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getImage failed: unknown result");
}
- public boolean registerSatellite(String organizationId, String address, String modulus, String exponent) throws org.apache.thrift.TException
+ public boolean registerSatellite(String organizationId, String address, String modulus, String exponent) throws TInvocationException, org.apache.thrift.TException
{
send_registerSatellite(organizationId, address, modulus, exponent);
return recv_registerSatellite();
@@ -447,17 +492,20 @@ public class MasterServer {
sendBase("registerSatellite", args);
}
- public boolean recv_registerSatellite() throws org.apache.thrift.TException
+ public boolean recv_registerSatellite() throws TInvocationException, org.apache.thrift.TException
{
registerSatellite_result result = new registerSatellite_result();
receiveBase(result, "registerSatellite");
if (result.isSetSuccess()) {
return result.success;
}
+ if (result.error != null) {
+ throw result.error;
+ }
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "registerSatellite failed: unknown result");
}
- public boolean updateSatelliteAddress(String serverSessionId, String address) throws org.apache.thrift.TException
+ public boolean updateSatelliteAddress(String serverSessionId, String address) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
send_updateSatelliteAddress(serverSessionId, address);
return recv_updateSatelliteAddress();
@@ -471,17 +519,23 @@ public class MasterServer {
sendBase("updateSatelliteAddress", args);
}
- public boolean recv_updateSatelliteAddress() throws org.apache.thrift.TException
+ public boolean recv_updateSatelliteAddress() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
updateSatelliteAddress_result result = new updateSatelliteAddress_result();
receiveBase(result, "updateSatelliteAddress");
if (result.isSetSuccess()) {
return result.success;
}
+ if (result.failure != null) {
+ throw result.failure;
+ }
+ if (result.error != null) {
+ throw result.error;
+ }
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "updateSatelliteAddress failed: unknown result");
}
- public List<Organization> getOrganizations() throws TInternalServerError, org.apache.thrift.TException
+ public List<Organization> getOrganizations() throws TInvocationException, org.apache.thrift.TException
{
send_getOrganizations();
return recv_getOrganizations();
@@ -493,7 +547,7 @@ public class MasterServer {
sendBase("getOrganizations", args);
}
- public List<Organization> recv_getOrganizations() throws TInternalServerError, org.apache.thrift.TException
+ public List<Organization> recv_getOrganizations() throws TInvocationException, org.apache.thrift.TException
{
getOrganizations_result result = new getOrganizations_result();
receiveBase(result, "getOrganizations");
@@ -506,7 +560,7 @@ public class MasterServer {
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getOrganizations failed: unknown result");
}
- public List<OperatingSystem> getOperatingSystems() throws TInternalServerError, org.apache.thrift.TException
+ public List<OperatingSystem> getOperatingSystems() throws TInvocationException, org.apache.thrift.TException
{
send_getOperatingSystems();
return recv_getOperatingSystems();
@@ -518,7 +572,7 @@ public class MasterServer {
sendBase("getOperatingSystems", args);
}
- public List<OperatingSystem> recv_getOperatingSystems() throws TInternalServerError, org.apache.thrift.TException
+ public List<OperatingSystem> recv_getOperatingSystems() throws TInvocationException, org.apache.thrift.TException
{
getOperatingSystems_result result = new getOperatingSystems_result();
receiveBase(result, "getOperatingSystems");
@@ -531,7 +585,7 @@ public class MasterServer {
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getOperatingSystems failed: unknown result");
}
- public List<Virtualizer> getVirtualizers() throws TInternalServerError, org.apache.thrift.TException
+ public List<Virtualizer> getVirtualizers() throws TInvocationException, org.apache.thrift.TException
{
send_getVirtualizers();
return recv_getVirtualizers();
@@ -543,7 +597,7 @@ public class MasterServer {
sendBase("getVirtualizers", args);
}
- public List<Virtualizer> recv_getVirtualizers() throws TInternalServerError, org.apache.thrift.TException
+ public List<Virtualizer> recv_getVirtualizers() throws TInvocationException, org.apache.thrift.TException
{
getVirtualizers_result result = new getVirtualizers_result();
receiveBase(result, "getVirtualizers");
@@ -556,7 +610,7 @@ public class MasterServer {
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getVirtualizers failed: unknown result");
}
- public List<MasterTag> getTags(long startDate) throws TInternalServerError, org.apache.thrift.TException
+ public List<MasterTag> getTags(long startDate) throws TInvocationException, org.apache.thrift.TException
{
send_getTags(startDate);
return recv_getTags();
@@ -569,7 +623,7 @@ public class MasterServer {
sendBase("getTags", args);
}
- public List<MasterTag> recv_getTags() throws TInternalServerError, org.apache.thrift.TException
+ public List<MasterTag> recv_getTags() throws TInvocationException, org.apache.thrift.TException
{
getTags_result result = new getTags_result();
receiveBase(result, "getTags");
@@ -582,7 +636,7 @@ public class MasterServer {
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getTags failed: unknown result");
}
- public List<MasterSoftware> getSoftware(long startDate) throws TInternalServerError, org.apache.thrift.TException
+ public List<MasterSoftware> getSoftware(long startDate) throws TInvocationException, org.apache.thrift.TException
{
send_getSoftware(startDate);
return recv_getSoftware();
@@ -595,7 +649,7 @@ public class MasterServer {
sendBase("getSoftware", args);
}
- public List<MasterSoftware> recv_getSoftware() throws TInternalServerError, org.apache.thrift.TException
+ public List<MasterSoftware> recv_getSoftware() throws TInvocationException, org.apache.thrift.TException
{
getSoftware_result result = new getSoftware_result();
receiveBase(result, "getSoftware");
@@ -680,7 +734,7 @@ public class MasterServer {
prot.writeMessageEnd();
}
- public SessionData getResult() throws TAuthorizationException, org.apache.thrift.TException {
+ public SessionData getResult() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -715,7 +769,7 @@ public class MasterServer {
prot.writeMessageEnd();
}
- public ClientSessionData getResult() throws TAuthorizationException, org.apache.thrift.TException {
+ public ClientSessionData getResult() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -753,7 +807,7 @@ public class MasterServer {
prot.writeMessageEnd();
}
- public List<UserInfo> getResult() throws TAuthorizationException, org.apache.thrift.TException {
+ public List<UserInfo> getResult() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -788,7 +842,7 @@ public class MasterServer {
prot.writeMessageEnd();
}
- public List<ImagePublishData> getResult() throws TAuthorizationException, org.apache.thrift.TException {
+ public List<ImagePublishData> getResult() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -798,6 +852,38 @@ public class MasterServer {
}
}
+ public void invalidateSession(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);
+ this.___currentMethod = method_call;
+ ___manager.call(method_call);
+ }
+
+ public static class invalidateSession_call extends org.apache.thrift.async.TAsyncMethodCall {
+ private String sessionId;
+ public invalidateSession_call(String sessionId, org.apache.thrift.async.AsyncMethodCallback resultHandler, org.apache.thrift.async.TAsyncClient client, org.apache.thrift.protocol.TProtocolFactory protocolFactory, org.apache.thrift.transport.TNonblockingTransport transport) throws org.apache.thrift.TException {
+ super(client, protocolFactory, transport, resultHandler, false);
+ this.sessionId = sessionId;
+ }
+
+ 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();
+ args.setSessionId(sessionId);
+ args.write(prot);
+ prot.writeMessageEnd();
+ }
+
+ public void getResult() throws TInvalidTokenException, org.apache.thrift.TException {
+ if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
+ throw new 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();
+ }
+ }
+
public void getUserFromToken(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);
@@ -884,7 +970,7 @@ public class MasterServer {
prot.writeMessageEnd();
}
- public ByteBuffer getResult() throws TAuthorizationException, org.apache.thrift.TException {
+ public ByteBuffer getResult() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -919,7 +1005,7 @@ public class MasterServer {
prot.writeMessageEnd();
}
- public ServerSessionData getResult() throws TAuthorizationException, org.apache.thrift.TException {
+ public ServerSessionData getResult() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -957,7 +1043,7 @@ public class MasterServer {
prot.writeMessageEnd();
}
- public TransferInformation getResult() throws TAuthorizationException, TImageDataException, TTransferRejectedException, org.apache.thrift.TException {
+ public TransferInformation getResult() throws TAuthorizationException, TInvocationException, TTransferRejectedException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -992,7 +1078,7 @@ public class MasterServer {
prot.writeMessageEnd();
}
- public TransferInformation getResult() throws TAuthorizationException, TImageDataException, org.apache.thrift.TException {
+ public TransferInformation getResult() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -1033,7 +1119,7 @@ public class MasterServer {
prot.writeMessageEnd();
}
- public boolean getResult() throws org.apache.thrift.TException {
+ public boolean getResult() throws TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -1068,7 +1154,7 @@ public class MasterServer {
prot.writeMessageEnd();
}
- public boolean getResult() throws org.apache.thrift.TException {
+ public boolean getResult() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -1097,7 +1183,7 @@ public class MasterServer {
prot.writeMessageEnd();
}
- public List<Organization> getResult() throws TInternalServerError, org.apache.thrift.TException {
+ public List<Organization> getResult() throws TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -1126,7 +1212,7 @@ public class MasterServer {
prot.writeMessageEnd();
}
- public List<OperatingSystem> getResult() throws TInternalServerError, org.apache.thrift.TException {
+ public List<OperatingSystem> getResult() throws TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -1155,7 +1241,7 @@ public class MasterServer {
prot.writeMessageEnd();
}
- public List<Virtualizer> getResult() throws TInternalServerError, org.apache.thrift.TException {
+ public List<Virtualizer> getResult() throws TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -1187,7 +1273,7 @@ public class MasterServer {
prot.writeMessageEnd();
}
- public List<MasterTag> getResult() throws TInternalServerError, org.apache.thrift.TException {
+ public List<MasterTag> getResult() throws TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -1219,7 +1305,7 @@ public class MasterServer {
prot.writeMessageEnd();
}
- public List<MasterSoftware> getResult() throws TInternalServerError, org.apache.thrift.TException {
+ public List<MasterSoftware> getResult() throws TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -1247,6 +1333,7 @@ public class MasterServer {
processMap.put("localAccountLogin", new localAccountLogin());
processMap.put("findUser", new findUser());
processMap.put("getPublicImages", new getPublicImages());
+ processMap.put("invalidateSession", new invalidateSession());
processMap.put("getUserFromToken", new getUserFromToken());
processMap.put("isServerAuthenticated", new isServerAuthenticated());
processMap.put("startServerAuthentication", new startServerAuthentication());
@@ -1303,6 +1390,8 @@ public class MasterServer {
result.success = iface.authenticate(args.login, args.password);
} catch (TAuthorizationException failure) {
result.failure = failure;
+ } catch (TInvocationException error) {
+ result.error = error;
}
return result;
}
@@ -1327,6 +1416,8 @@ public class MasterServer {
result.success = iface.localAccountLogin(args.login, args.password);
} catch (TAuthorizationException failure) {
result.failure = failure;
+ } catch (TInvocationException error) {
+ result.error = error;
}
return result;
}
@@ -1351,6 +1442,8 @@ public class MasterServer {
result.success = iface.findUser(args.sessionId, args.organizationId, args.searchTerm);
} catch (TAuthorizationException failure) {
result.failure = failure;
+ } catch (TInvocationException error) {
+ result.error = error;
}
return result;
}
@@ -1375,6 +1468,32 @@ public class MasterServer {
result.success = iface.getPublicImages(args.sessionId, args.page);
} catch (TAuthorizationException failure) {
result.failure = failure;
+ } catch (TInvocationException error) {
+ result.error = error;
+ }
+ return result;
+ }
+ }
+
+ public static class invalidateSession<I extends Iface> extends org.apache.thrift.ProcessFunction<I, invalidateSession_args> {
+ public invalidateSession() {
+ super("invalidateSession");
+ }
+
+ public invalidateSession_args getEmptyArgsInstance() {
+ return new invalidateSession_args();
+ }
+
+ protected boolean isOneway() {
+ return false;
+ }
+
+ public invalidateSession_result getResult(I iface, invalidateSession_args args) throws org.apache.thrift.TException {
+ invalidateSession_result result = new invalidateSession_result();
+ try {
+ iface.invalidateSession(args.sessionId);
+ } catch (TInvalidTokenException ex) {
+ result.ex = ex;
}
return result;
}
@@ -1444,6 +1563,8 @@ public class MasterServer {
result.success = iface.startServerAuthentication(args.organizationId);
} catch (TAuthorizationException failure) {
result.failure = failure;
+ } catch (TInvocationException error) {
+ result.error = error;
}
return result;
}
@@ -1468,6 +1589,8 @@ public class MasterServer {
result.success = iface.serverAuthenticate(args.organizationId, args.challengeResponse);
} catch (TAuthorizationException failure) {
result.failure = failure;
+ } catch (TInvocationException errr) {
+ result.errr = errr;
}
return result;
}
@@ -1492,7 +1615,7 @@ public class MasterServer {
result.success = iface.submitImage(args.serverSessionId, args.imageDescription, args.blockHashes);
} catch (TAuthorizationException failure) {
result.failure = failure;
- } catch (TImageDataException failure2) {
+ } catch (TInvocationException failure2) {
result.failure2 = failure2;
} catch (TTransferRejectedException failure3) {
result.failure3 = failure3;
@@ -1520,7 +1643,7 @@ public class MasterServer {
result.success = iface.getImage(args.serverSessionId, args.imageVersionId);
} catch (TAuthorizationException failure) {
result.failure = failure;
- } catch (TImageDataException failure2) {
+ } catch (TInvocationException failure2) {
result.failure2 = failure2;
}
return result;
@@ -1542,8 +1665,12 @@ public class MasterServer {
public registerSatellite_result getResult(I iface, registerSatellite_args args) throws org.apache.thrift.TException {
registerSatellite_result result = new registerSatellite_result();
- result.success = iface.registerSatellite(args.organizationId, args.address, args.modulus, args.exponent);
- result.setSuccessIsSet(true);
+ try {
+ result.success = iface.registerSatellite(args.organizationId, args.address, args.modulus, args.exponent);
+ result.setSuccessIsSet(true);
+ } catch (TInvocationException error) {
+ result.error = error;
+ }
return result;
}
}
@@ -1563,8 +1690,14 @@ public class MasterServer {
public updateSatelliteAddress_result getResult(I iface, updateSatelliteAddress_args args) throws org.apache.thrift.TException {
updateSatelliteAddress_result result = new updateSatelliteAddress_result();
- result.success = iface.updateSatelliteAddress(args.serverSessionId, args.address);
- result.setSuccessIsSet(true);
+ try {
+ result.success = iface.updateSatelliteAddress(args.serverSessionId, args.address);
+ result.setSuccessIsSet(true);
+ } catch (TAuthorizationException failure) {
+ result.failure = failure;
+ } catch (TInvocationException error) {
+ result.error = error;
+ }
return result;
}
}
@@ -1586,7 +1719,7 @@ public class MasterServer {
getOrganizations_result result = new getOrganizations_result();
try {
result.success = iface.getOrganizations();
- } catch (TInternalServerError serverError) {
+ } catch (TInvocationException serverError) {
result.serverError = serverError;
}
return result;
@@ -1610,7 +1743,7 @@ public class MasterServer {
getOperatingSystems_result result = new getOperatingSystems_result();
try {
result.success = iface.getOperatingSystems();
- } catch (TInternalServerError serverError) {
+ } catch (TInvocationException serverError) {
result.serverError = serverError;
}
return result;
@@ -1634,7 +1767,7 @@ public class MasterServer {
getVirtualizers_result result = new getVirtualizers_result();
try {
result.success = iface.getVirtualizers();
- } catch (TInternalServerError serverError) {
+ } catch (TInvocationException serverError) {
result.serverError = serverError;
}
return result;
@@ -1658,7 +1791,7 @@ public class MasterServer {
getTags_result result = new getTags_result();
try {
result.success = iface.getTags(args.startDate);
- } catch (TInternalServerError serverError) {
+ } catch (TInvocationException serverError) {
result.serverError = serverError;
}
return result;
@@ -1682,7 +1815,7 @@ public class MasterServer {
getSoftware_result result = new getSoftware_result();
try {
result.success = iface.getSoftware(args.startDate);
- } catch (TInternalServerError serverError) {
+ } catch (TInvocationException serverError) {
result.serverError = serverError;
}
return result;
@@ -1707,6 +1840,7 @@ public class MasterServer {
processMap.put("localAccountLogin", new localAccountLogin());
processMap.put("findUser", new findUser());
processMap.put("getPublicImages", new getPublicImages());
+ processMap.put("invalidateSession", new invalidateSession());
processMap.put("getUserFromToken", new getUserFromToken());
processMap.put("isServerAuthenticated", new isServerAuthenticated());
processMap.put("startServerAuthentication", new startServerAuthentication());
@@ -1807,6 +1941,11 @@ public class MasterServer {
result.setFailureIsSet(true);
msg = result;
}
+ else if (e instanceof TInvocationException) {
+ result.error = (TInvocationException) e;
+ result.setErrorIsSet(true);
+ msg = result;
+ }
else
{
msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION;
@@ -1864,6 +2003,11 @@ public class MasterServer {
result.setFailureIsSet(true);
msg = result;
}
+ else if (e instanceof TInvocationException) {
+ result.error = (TInvocationException) e;
+ result.setErrorIsSet(true);
+ msg = result;
+ }
else
{
msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION;
@@ -1921,6 +2065,11 @@ public class MasterServer {
result.setFailureIsSet(true);
msg = result;
}
+ else if (e instanceof TInvocationException) {
+ result.error = (TInvocationException) e;
+ result.setErrorIsSet(true);
+ msg = result;
+ }
else
{
msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION;
@@ -1978,6 +2127,11 @@ public class MasterServer {
result.setFailureIsSet(true);
msg = result;
}
+ else if (e instanceof TInvocationException) {
+ result.error = (TInvocationException) e;
+ result.setErrorIsSet(true);
+ msg = result;
+ }
else
{
msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION;
@@ -2003,6 +2157,62 @@ public class MasterServer {
}
}
+ public static class invalidateSession<I extends AsyncIface> extends org.apache.thrift.AsyncProcessFunction<I, invalidateSession_args, Void> {
+ public invalidateSession() {
+ super("invalidateSession");
+ }
+
+ public invalidateSession_args getEmptyArgsInstance() {
+ return new invalidateSession_args();
+ }
+
+ public AsyncMethodCallback<Void> getResultHandler(final AsyncFrameBuffer fb, final int seqid) {
+ final org.apache.thrift.AsyncProcessFunction fcall = this;
+ return new AsyncMethodCallback<Void>() {
+ public void onComplete(Void o) {
+ invalidateSession_result result = new invalidateSession_result();
+ try {
+ fcall.sendResponse(fb,result, org.apache.thrift.protocol.TMessageType.REPLY,seqid);
+ return;
+ } catch (Exception e) {
+ LOGGER.error("Exception writing to internal frame buffer", e);
+ }
+ fb.close();
+ }
+ public void onError(Exception e) {
+ byte msgType = org.apache.thrift.protocol.TMessageType.REPLY;
+ org.apache.thrift.TBase msg;
+ invalidateSession_result result = new invalidateSession_result();
+ if (e instanceof TInvalidTokenException) {
+ result.ex = (TInvalidTokenException) e;
+ result.setExIsSet(true);
+ msg = result;
+ }
+ else
+ {
+ msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION;
+ msg = (org.apache.thrift.TBase)new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage());
+ }
+ try {
+ fcall.sendResponse(fb,msg,msgType,seqid);
+ return;
+ } catch (Exception ex) {
+ LOGGER.error("Exception writing to internal frame buffer", ex);
+ }
+ fb.close();
+ }
+ };
+ }
+
+ protected boolean isOneway() {
+ return false;
+ }
+
+ public void start(I iface, invalidateSession_args args, org.apache.thrift.async.AsyncMethodCallback<Void> resultHandler) throws TException {
+ iface.invalidateSession(args.sessionId,resultHandler);
+ }
+ }
+
public static class getUserFromToken<I extends AsyncIface> extends org.apache.thrift.AsyncProcessFunction<I, getUserFromToken_args, UserInfo> {
public getUserFromToken() {
super("getUserFromToken");
@@ -2144,6 +2354,11 @@ public class MasterServer {
result.setFailureIsSet(true);
msg = result;
}
+ else if (e instanceof TInvocationException) {
+ result.error = (TInvocationException) e;
+ result.setErrorIsSet(true);
+ msg = result;
+ }
else
{
msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION;
@@ -2201,6 +2416,11 @@ public class MasterServer {
result.setFailureIsSet(true);
msg = result;
}
+ else if (e instanceof TInvocationException) {
+ result.errr = (TInvocationException) e;
+ result.setErrrIsSet(true);
+ msg = result;
+ }
else
{
msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION;
@@ -2258,8 +2478,8 @@ public class MasterServer {
result.setFailureIsSet(true);
msg = result;
}
- else if (e instanceof TImageDataException) {
- result.failure2 = (TImageDataException) e;
+ else if (e instanceof TInvocationException) {
+ result.failure2 = (TInvocationException) e;
result.setFailure2IsSet(true);
msg = result;
}
@@ -2325,8 +2545,8 @@ public class MasterServer {
result.setFailureIsSet(true);
msg = result;
}
- else if (e instanceof TImageDataException) {
- result.failure2 = (TImageDataException) e;
+ else if (e instanceof TInvocationException) {
+ result.failure2 = (TInvocationException) e;
result.setFailure2IsSet(true);
msg = result;
}
@@ -2383,6 +2603,12 @@ public class MasterServer {
byte msgType = org.apache.thrift.protocol.TMessageType.REPLY;
org.apache.thrift.TBase msg;
registerSatellite_result result = new registerSatellite_result();
+ if (e instanceof TInvocationException) {
+ result.error = (TInvocationException) e;
+ result.setErrorIsSet(true);
+ msg = result;
+ }
+ else
{
msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION;
msg = (org.apache.thrift.TBase)new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage());
@@ -2435,6 +2661,17 @@ public class MasterServer {
byte msgType = org.apache.thrift.protocol.TMessageType.REPLY;
org.apache.thrift.TBase msg;
updateSatelliteAddress_result result = new updateSatelliteAddress_result();
+ if (e instanceof TAuthorizationException) {
+ result.failure = (TAuthorizationException) e;
+ result.setFailureIsSet(true);
+ msg = result;
+ }
+ else if (e instanceof TInvocationException) {
+ result.error = (TInvocationException) e;
+ result.setErrorIsSet(true);
+ msg = result;
+ }
+ else
{
msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION;
msg = (org.apache.thrift.TBase)new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage());
@@ -2486,8 +2723,8 @@ public class MasterServer {
byte msgType = org.apache.thrift.protocol.TMessageType.REPLY;
org.apache.thrift.TBase msg;
getOrganizations_result result = new getOrganizations_result();
- if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
+ if (e instanceof TInvocationException) {
+ result.serverError = (TInvocationException) e;
result.setServerErrorIsSet(true);
msg = result;
}
@@ -2543,8 +2780,8 @@ public class MasterServer {
byte msgType = org.apache.thrift.protocol.TMessageType.REPLY;
org.apache.thrift.TBase msg;
getOperatingSystems_result result = new getOperatingSystems_result();
- if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
+ if (e instanceof TInvocationException) {
+ result.serverError = (TInvocationException) e;
result.setServerErrorIsSet(true);
msg = result;
}
@@ -2600,8 +2837,8 @@ public class MasterServer {
byte msgType = org.apache.thrift.protocol.TMessageType.REPLY;
org.apache.thrift.TBase msg;
getVirtualizers_result result = new getVirtualizers_result();
- if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
+ if (e instanceof TInvocationException) {
+ result.serverError = (TInvocationException) e;
result.setServerErrorIsSet(true);
msg = result;
}
@@ -2657,8 +2894,8 @@ public class MasterServer {
byte msgType = org.apache.thrift.protocol.TMessageType.REPLY;
org.apache.thrift.TBase msg;
getTags_result result = new getTags_result();
- if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
+ if (e instanceof TInvocationException) {
+ result.serverError = (TInvocationException) e;
result.setServerErrorIsSet(true);
msg = result;
}
@@ -2714,8 +2951,8 @@ public class MasterServer {
byte msgType = org.apache.thrift.protocol.TMessageType.REPLY;
org.apache.thrift.TBase msg;
getSoftware_result result = new getSoftware_result();
- if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
+ if (e instanceof TInvocationException) {
+ result.serverError = (TInvocationException) e;
result.setServerErrorIsSet(true);
msg = result;
}
@@ -3805,6 +4042,7 @@ public class MasterServer {
private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.STRUCT, (short)0);
private static final org.apache.thrift.protocol.TField FAILURE_FIELD_DESC = new org.apache.thrift.protocol.TField("failure", org.apache.thrift.protocol.TType.STRUCT, (short)1);
+ private static final org.apache.thrift.protocol.TField ERROR_FIELD_DESC = new org.apache.thrift.protocol.TField("error", org.apache.thrift.protocol.TType.STRUCT, (short)2);
private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
static {
@@ -3814,11 +4052,13 @@ public class MasterServer {
public SessionData success; // required
public TAuthorizationException failure; // required
+ public TInvocationException error; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
SUCCESS((short)0, "success"),
- FAILURE((short)1, "failure");
+ FAILURE((short)1, "failure"),
+ ERROR((short)2, "error");
private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
@@ -3837,6 +4077,8 @@ public class MasterServer {
return SUCCESS;
case 1: // FAILURE
return FAILURE;
+ case 2: // ERROR
+ return ERROR;
default:
return null;
}
@@ -3884,6 +4126,8 @@ public class MasterServer {
new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, SessionData.class)));
tmpMap.put(_Fields.FAILURE, new org.apache.thrift.meta_data.FieldMetaData("failure", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
+ tmpMap.put(_Fields.ERROR, new org.apache.thrift.meta_data.FieldMetaData("error", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(authenticate_result.class, metaDataMap);
}
@@ -3893,11 +4137,13 @@ public class MasterServer {
public authenticate_result(
SessionData success,
- TAuthorizationException failure)
+ TAuthorizationException failure,
+ TInvocationException error)
{
this();
this.success = success;
this.failure = failure;
+ this.error = error;
}
/**
@@ -3910,6 +4156,9 @@ public class MasterServer {
if (other.isSetFailure()) {
this.failure = new TAuthorizationException(other.failure);
}
+ if (other.isSetError()) {
+ this.error = new TInvocationException(other.error);
+ }
}
public authenticate_result deepCopy() {
@@ -3920,6 +4169,7 @@ public class MasterServer {
public void clear() {
this.success = null;
this.failure = null;
+ this.error = null;
}
public SessionData getSuccess() {
@@ -3970,6 +4220,30 @@ public class MasterServer {
}
}
+ public TInvocationException getError() {
+ return this.error;
+ }
+
+ public authenticate_result setError(TInvocationException error) {
+ this.error = error;
+ return this;
+ }
+
+ public void unsetError() {
+ this.error = null;
+ }
+
+ /** Returns true if field error is set (has been assigned a value) and false otherwise */
+ public boolean isSetError() {
+ return this.error != null;
+ }
+
+ public void setErrorIsSet(boolean value) {
+ if (!value) {
+ this.error = null;
+ }
+ }
+
public void setFieldValue(_Fields field, Object value) {
switch (field) {
case SUCCESS:
@@ -3988,6 +4262,14 @@ public class MasterServer {
}
break;
+ case ERROR:
+ if (value == null) {
+ unsetError();
+ } else {
+ setError((TInvocationException)value);
+ }
+ break;
+
}
}
@@ -3999,6 +4281,9 @@ public class MasterServer {
case FAILURE:
return getFailure();
+ case ERROR:
+ return getError();
+
}
throw new IllegalStateException();
}
@@ -4014,6 +4299,8 @@ public class MasterServer {
return isSetSuccess();
case FAILURE:
return isSetFailure();
+ case ERROR:
+ return isSetError();
}
throw new IllegalStateException();
}
@@ -4049,6 +4336,15 @@ public class MasterServer {
return false;
}
+ boolean this_present_error = true && this.isSetError();
+ boolean that_present_error = true && that.isSetError();
+ if (this_present_error || that_present_error) {
+ if (!(this_present_error && that_present_error))
+ return false;
+ if (!this.error.equals(that.error))
+ return false;
+ }
+
return true;
}
@@ -4085,6 +4381,16 @@ public class MasterServer {
return lastComparison;
}
}
+ lastComparison = Boolean.valueOf(isSetError()).compareTo(other.isSetError());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetError()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.error, other.error);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
return 0;
}
@@ -4120,6 +4426,14 @@ public class MasterServer {
sb.append(this.failure);
}
first = false;
+ if (!first) sb.append(", ");
+ sb.append("error:");
+ if (this.error == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.error);
+ }
+ first = false;
sb.append(")");
return sb.toString();
}
@@ -4184,6 +4498,15 @@ public class MasterServer {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
+ case 2: // ERROR
+ if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
+ struct.error = new TInvocationException();
+ struct.error.read(iprot);
+ struct.setErrorIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
default:
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
@@ -4209,6 +4532,11 @@ public class MasterServer {
struct.failure.write(oprot);
oprot.writeFieldEnd();
}
+ if (struct.error != null) {
+ oprot.writeFieldBegin(ERROR_FIELD_DESC);
+ struct.error.write(oprot);
+ oprot.writeFieldEnd();
+ }
oprot.writeFieldStop();
oprot.writeStructEnd();
}
@@ -4233,19 +4561,25 @@ public class MasterServer {
if (struct.isSetFailure()) {
optionals.set(1);
}
- oprot.writeBitSet(optionals, 2);
+ if (struct.isSetError()) {
+ optionals.set(2);
+ }
+ oprot.writeBitSet(optionals, 3);
if (struct.isSetSuccess()) {
struct.success.write(oprot);
}
if (struct.isSetFailure()) {
struct.failure.write(oprot);
}
+ if (struct.isSetError()) {
+ struct.error.write(oprot);
+ }
}
@Override
public void read(org.apache.thrift.protocol.TProtocol prot, authenticate_result struct) throws org.apache.thrift.TException {
TTupleProtocol iprot = (TTupleProtocol) prot;
- BitSet incoming = iprot.readBitSet(2);
+ BitSet incoming = iprot.readBitSet(3);
if (incoming.get(0)) {
struct.success = new SessionData();
struct.success.read(iprot);
@@ -4256,6 +4590,11 @@ public class MasterServer {
struct.failure.read(iprot);
struct.setFailureIsSet(true);
}
+ if (incoming.get(2)) {
+ struct.error = new TInvocationException();
+ struct.error.read(iprot);
+ struct.setErrorIsSet(true);
+ }
}
}
@@ -4720,6 +5059,7 @@ public class MasterServer {
private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.STRUCT, (short)0);
private static final org.apache.thrift.protocol.TField FAILURE_FIELD_DESC = new org.apache.thrift.protocol.TField("failure", org.apache.thrift.protocol.TType.STRUCT, (short)1);
+ private static final org.apache.thrift.protocol.TField ERROR_FIELD_DESC = new org.apache.thrift.protocol.TField("error", org.apache.thrift.protocol.TType.STRUCT, (short)2);
private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
static {
@@ -4729,11 +5069,13 @@ public class MasterServer {
public ClientSessionData success; // required
public TAuthorizationException failure; // required
+ public TInvocationException error; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
SUCCESS((short)0, "success"),
- FAILURE((short)1, "failure");
+ FAILURE((short)1, "failure"),
+ ERROR((short)2, "error");
private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
@@ -4752,6 +5094,8 @@ public class MasterServer {
return SUCCESS;
case 1: // FAILURE
return FAILURE;
+ case 2: // ERROR
+ return ERROR;
default:
return null;
}
@@ -4799,6 +5143,8 @@ public class MasterServer {
new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, ClientSessionData.class)));
tmpMap.put(_Fields.FAILURE, new org.apache.thrift.meta_data.FieldMetaData("failure", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
+ tmpMap.put(_Fields.ERROR, new org.apache.thrift.meta_data.FieldMetaData("error", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(localAccountLogin_result.class, metaDataMap);
}
@@ -4808,11 +5154,13 @@ public class MasterServer {
public localAccountLogin_result(
ClientSessionData success,
- TAuthorizationException failure)
+ TAuthorizationException failure,
+ TInvocationException error)
{
this();
this.success = success;
this.failure = failure;
+ this.error = error;
}
/**
@@ -4825,6 +5173,9 @@ public class MasterServer {
if (other.isSetFailure()) {
this.failure = new TAuthorizationException(other.failure);
}
+ if (other.isSetError()) {
+ this.error = new TInvocationException(other.error);
+ }
}
public localAccountLogin_result deepCopy() {
@@ -4835,6 +5186,7 @@ public class MasterServer {
public void clear() {
this.success = null;
this.failure = null;
+ this.error = null;
}
public ClientSessionData getSuccess() {
@@ -4885,6 +5237,30 @@ public class MasterServer {
}
}
+ public TInvocationException getError() {
+ return this.error;
+ }
+
+ public localAccountLogin_result setError(TInvocationException error) {
+ this.error = error;
+ return this;
+ }
+
+ public void unsetError() {
+ this.error = null;
+ }
+
+ /** Returns true if field error is set (has been assigned a value) and false otherwise */
+ public boolean isSetError() {
+ return this.error != null;
+ }
+
+ public void setErrorIsSet(boolean value) {
+ if (!value) {
+ this.error = null;
+ }
+ }
+
public void setFieldValue(_Fields field, Object value) {
switch (field) {
case SUCCESS:
@@ -4903,6 +5279,14 @@ public class MasterServer {
}
break;
+ case ERROR:
+ if (value == null) {
+ unsetError();
+ } else {
+ setError((TInvocationException)value);
+ }
+ break;
+
}
}
@@ -4914,6 +5298,9 @@ public class MasterServer {
case FAILURE:
return getFailure();
+ case ERROR:
+ return getError();
+
}
throw new IllegalStateException();
}
@@ -4929,6 +5316,8 @@ public class MasterServer {
return isSetSuccess();
case FAILURE:
return isSetFailure();
+ case ERROR:
+ return isSetError();
}
throw new IllegalStateException();
}
@@ -4964,6 +5353,15 @@ public class MasterServer {
return false;
}
+ boolean this_present_error = true && this.isSetError();
+ boolean that_present_error = true && that.isSetError();
+ if (this_present_error || that_present_error) {
+ if (!(this_present_error && that_present_error))
+ return false;
+ if (!this.error.equals(that.error))
+ return false;
+ }
+
return true;
}
@@ -5000,6 +5398,16 @@ public class MasterServer {
return lastComparison;
}
}
+ lastComparison = Boolean.valueOf(isSetError()).compareTo(other.isSetError());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetError()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.error, other.error);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
return 0;
}
@@ -5035,6 +5443,14 @@ public class MasterServer {
sb.append(this.failure);
}
first = false;
+ if (!first) sb.append(", ");
+ sb.append("error:");
+ if (this.error == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.error);
+ }
+ first = false;
sb.append(")");
return sb.toString();
}
@@ -5099,6 +5515,15 @@ public class MasterServer {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
+ case 2: // ERROR
+ if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
+ struct.error = new TInvocationException();
+ struct.error.read(iprot);
+ struct.setErrorIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
default:
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
@@ -5124,6 +5549,11 @@ public class MasterServer {
struct.failure.write(oprot);
oprot.writeFieldEnd();
}
+ if (struct.error != null) {
+ oprot.writeFieldBegin(ERROR_FIELD_DESC);
+ struct.error.write(oprot);
+ oprot.writeFieldEnd();
+ }
oprot.writeFieldStop();
oprot.writeStructEnd();
}
@@ -5148,19 +5578,25 @@ public class MasterServer {
if (struct.isSetFailure()) {
optionals.set(1);
}
- oprot.writeBitSet(optionals, 2);
+ if (struct.isSetError()) {
+ optionals.set(2);
+ }
+ oprot.writeBitSet(optionals, 3);
if (struct.isSetSuccess()) {
struct.success.write(oprot);
}
if (struct.isSetFailure()) {
struct.failure.write(oprot);
}
+ if (struct.isSetError()) {
+ struct.error.write(oprot);
+ }
}
@Override
public void read(org.apache.thrift.protocol.TProtocol prot, localAccountLogin_result struct) throws org.apache.thrift.TException {
TTupleProtocol iprot = (TTupleProtocol) prot;
- BitSet incoming = iprot.readBitSet(2);
+ BitSet incoming = iprot.readBitSet(3);
if (incoming.get(0)) {
struct.success = new ClientSessionData();
struct.success.read(iprot);
@@ -5171,6 +5607,11 @@ public class MasterServer {
struct.failure.read(iprot);
struct.setFailureIsSet(true);
}
+ if (incoming.get(2)) {
+ struct.error = new TInvocationException();
+ struct.error.read(iprot);
+ struct.setErrorIsSet(true);
+ }
}
}
@@ -5735,6 +6176,7 @@ public class MasterServer {
private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.LIST, (short)0);
private static final org.apache.thrift.protocol.TField FAILURE_FIELD_DESC = new org.apache.thrift.protocol.TField("failure", org.apache.thrift.protocol.TType.STRUCT, (short)1);
+ private static final org.apache.thrift.protocol.TField ERROR_FIELD_DESC = new org.apache.thrift.protocol.TField("error", org.apache.thrift.protocol.TType.STRUCT, (short)2);
private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
static {
@@ -5744,11 +6186,13 @@ public class MasterServer {
public List<UserInfo> success; // required
public TAuthorizationException failure; // required
+ public TInvocationException error; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
SUCCESS((short)0, "success"),
- FAILURE((short)1, "failure");
+ FAILURE((short)1, "failure"),
+ ERROR((short)2, "error");
private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
@@ -5767,6 +6211,8 @@ public class MasterServer {
return SUCCESS;
case 1: // FAILURE
return FAILURE;
+ case 2: // ERROR
+ return ERROR;
default:
return null;
}
@@ -5815,6 +6261,8 @@ public class MasterServer {
new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, UserInfo.class))));
tmpMap.put(_Fields.FAILURE, new org.apache.thrift.meta_data.FieldMetaData("failure", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
+ tmpMap.put(_Fields.ERROR, new org.apache.thrift.meta_data.FieldMetaData("error", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(findUser_result.class, metaDataMap);
}
@@ -5824,11 +6272,13 @@ public class MasterServer {
public findUser_result(
List<UserInfo> success,
- TAuthorizationException failure)
+ TAuthorizationException failure,
+ TInvocationException error)
{
this();
this.success = success;
this.failure = failure;
+ this.error = error;
}
/**
@@ -5845,6 +6295,9 @@ public class MasterServer {
if (other.isSetFailure()) {
this.failure = new TAuthorizationException(other.failure);
}
+ if (other.isSetError()) {
+ this.error = new TInvocationException(other.error);
+ }
}
public findUser_result deepCopy() {
@@ -5855,6 +6308,7 @@ public class MasterServer {
public void clear() {
this.success = null;
this.failure = null;
+ this.error = null;
}
public int getSuccessSize() {
@@ -5920,6 +6374,30 @@ public class MasterServer {
}
}
+ public TInvocationException getError() {
+ return this.error;
+ }
+
+ public findUser_result setError(TInvocationException error) {
+ this.error = error;
+ return this;
+ }
+
+ public void unsetError() {
+ this.error = null;
+ }
+
+ /** Returns true if field error is set (has been assigned a value) and false otherwise */
+ public boolean isSetError() {
+ return this.error != null;
+ }
+
+ public void setErrorIsSet(boolean value) {
+ if (!value) {
+ this.error = null;
+ }
+ }
+
public void setFieldValue(_Fields field, Object value) {
switch (field) {
case SUCCESS:
@@ -5938,6 +6416,14 @@ public class MasterServer {
}
break;
+ case ERROR:
+ if (value == null) {
+ unsetError();
+ } else {
+ setError((TInvocationException)value);
+ }
+ break;
+
}
}
@@ -5949,6 +6435,9 @@ public class MasterServer {
case FAILURE:
return getFailure();
+ case ERROR:
+ return getError();
+
}
throw new IllegalStateException();
}
@@ -5964,6 +6453,8 @@ public class MasterServer {
return isSetSuccess();
case FAILURE:
return isSetFailure();
+ case ERROR:
+ return isSetError();
}
throw new IllegalStateException();
}
@@ -5999,6 +6490,15 @@ public class MasterServer {
return false;
}
+ boolean this_present_error = true && this.isSetError();
+ boolean that_present_error = true && that.isSetError();
+ if (this_present_error || that_present_error) {
+ if (!(this_present_error && that_present_error))
+ return false;
+ if (!this.error.equals(that.error))
+ return false;
+ }
+
return true;
}
@@ -6035,6 +6535,16 @@ public class MasterServer {
return lastComparison;
}
}
+ lastComparison = Boolean.valueOf(isSetError()).compareTo(other.isSetError());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetError()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.error, other.error);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
return 0;
}
@@ -6070,6 +6580,14 @@ public class MasterServer {
sb.append(this.failure);
}
first = false;
+ if (!first) sb.append(", ");
+ sb.append("error:");
+ if (this.error == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.error);
+ }
+ first = false;
sb.append(")");
return sb.toString();
}
@@ -6141,6 +6659,15 @@ public class MasterServer {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
+ case 2: // ERROR
+ if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
+ struct.error = new TInvocationException();
+ struct.error.read(iprot);
+ struct.setErrorIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
default:
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
@@ -6173,6 +6700,11 @@ public class MasterServer {
struct.failure.write(oprot);
oprot.writeFieldEnd();
}
+ if (struct.error != null) {
+ oprot.writeFieldBegin(ERROR_FIELD_DESC);
+ struct.error.write(oprot);
+ oprot.writeFieldEnd();
+ }
oprot.writeFieldStop();
oprot.writeStructEnd();
}
@@ -6197,7 +6729,10 @@ public class MasterServer {
if (struct.isSetFailure()) {
optionals.set(1);
}
- oprot.writeBitSet(optionals, 2);
+ if (struct.isSetError()) {
+ optionals.set(2);
+ }
+ oprot.writeBitSet(optionals, 3);
if (struct.isSetSuccess()) {
{
oprot.writeI32(struct.success.size());
@@ -6210,12 +6745,15 @@ public class MasterServer {
if (struct.isSetFailure()) {
struct.failure.write(oprot);
}
+ if (struct.isSetError()) {
+ struct.error.write(oprot);
+ }
}
@Override
public void read(org.apache.thrift.protocol.TProtocol prot, findUser_result struct) throws org.apache.thrift.TException {
TTupleProtocol iprot = (TTupleProtocol) prot;
- BitSet incoming = iprot.readBitSet(2);
+ BitSet incoming = iprot.readBitSet(3);
if (incoming.get(0)) {
{
org.apache.thrift.protocol.TList _list255 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
@@ -6235,6 +6773,11 @@ public class MasterServer {
struct.failure.read(iprot);
struct.setFailureIsSet(true);
}
+ if (incoming.get(2)) {
+ struct.error = new TInvocationException();
+ struct.error.read(iprot);
+ struct.setErrorIsSet(true);
+ }
}
}
@@ -6697,6 +7240,7 @@ public class MasterServer {
private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.LIST, (short)0);
private static final org.apache.thrift.protocol.TField FAILURE_FIELD_DESC = new org.apache.thrift.protocol.TField("failure", org.apache.thrift.protocol.TType.STRUCT, (short)1);
+ private static final org.apache.thrift.protocol.TField ERROR_FIELD_DESC = new org.apache.thrift.protocol.TField("error", org.apache.thrift.protocol.TType.STRUCT, (short)2);
private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
static {
@@ -6706,11 +7250,13 @@ public class MasterServer {
public List<ImagePublishData> success; // required
public TAuthorizationException failure; // required
+ public TInvocationException error; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
SUCCESS((short)0, "success"),
- FAILURE((short)1, "failure");
+ FAILURE((short)1, "failure"),
+ ERROR((short)2, "error");
private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
@@ -6729,6 +7275,8 @@ public class MasterServer {
return SUCCESS;
case 1: // FAILURE
return FAILURE;
+ case 2: // ERROR
+ return ERROR;
default:
return null;
}
@@ -6777,6 +7325,8 @@ public class MasterServer {
new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, ImagePublishData.class))));
tmpMap.put(_Fields.FAILURE, new org.apache.thrift.meta_data.FieldMetaData("failure", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
+ tmpMap.put(_Fields.ERROR, new org.apache.thrift.meta_data.FieldMetaData("error", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getPublicImages_result.class, metaDataMap);
}
@@ -6786,11 +7336,13 @@ public class MasterServer {
public getPublicImages_result(
List<ImagePublishData> success,
- TAuthorizationException failure)
+ TAuthorizationException failure,
+ TInvocationException error)
{
this();
this.success = success;
this.failure = failure;
+ this.error = error;
}
/**
@@ -6807,6 +7359,9 @@ public class MasterServer {
if (other.isSetFailure()) {
this.failure = new TAuthorizationException(other.failure);
}
+ if (other.isSetError()) {
+ this.error = new TInvocationException(other.error);
+ }
}
public getPublicImages_result deepCopy() {
@@ -6817,6 +7372,7 @@ public class MasterServer {
public void clear() {
this.success = null;
this.failure = null;
+ this.error = null;
}
public int getSuccessSize() {
@@ -6882,6 +7438,30 @@ public class MasterServer {
}
}
+ public TInvocationException getError() {
+ return this.error;
+ }
+
+ public getPublicImages_result setError(TInvocationException error) {
+ this.error = error;
+ return this;
+ }
+
+ public void unsetError() {
+ this.error = null;
+ }
+
+ /** Returns true if field error is set (has been assigned a value) and false otherwise */
+ public boolean isSetError() {
+ return this.error != null;
+ }
+
+ public void setErrorIsSet(boolean value) {
+ if (!value) {
+ this.error = null;
+ }
+ }
+
public void setFieldValue(_Fields field, Object value) {
switch (field) {
case SUCCESS:
@@ -6900,6 +7480,14 @@ public class MasterServer {
}
break;
+ case ERROR:
+ if (value == null) {
+ unsetError();
+ } else {
+ setError((TInvocationException)value);
+ }
+ break;
+
}
}
@@ -6911,6 +7499,9 @@ public class MasterServer {
case FAILURE:
return getFailure();
+ case ERROR:
+ return getError();
+
}
throw new IllegalStateException();
}
@@ -6926,6 +7517,8 @@ public class MasterServer {
return isSetSuccess();
case FAILURE:
return isSetFailure();
+ case ERROR:
+ return isSetError();
}
throw new IllegalStateException();
}
@@ -6961,6 +7554,15 @@ public class MasterServer {
return false;
}
+ boolean this_present_error = true && this.isSetError();
+ boolean that_present_error = true && that.isSetError();
+ if (this_present_error || that_present_error) {
+ if (!(this_present_error && that_present_error))
+ return false;
+ if (!this.error.equals(that.error))
+ return false;
+ }
+
return true;
}
@@ -6997,6 +7599,16 @@ public class MasterServer {
return lastComparison;
}
}
+ lastComparison = Boolean.valueOf(isSetError()).compareTo(other.isSetError());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetError()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.error, other.error);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
return 0;
}
@@ -7032,6 +7644,14 @@ public class MasterServer {
sb.append(this.failure);
}
first = false;
+ if (!first) sb.append(", ");
+ sb.append("error:");
+ if (this.error == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.error);
+ }
+ first = false;
sb.append(")");
return sb.toString();
}
@@ -7103,6 +7723,15 @@ public class MasterServer {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
+ case 2: // ERROR
+ if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
+ struct.error = new TInvocationException();
+ struct.error.read(iprot);
+ struct.setErrorIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
default:
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
@@ -7135,6 +7764,11 @@ public class MasterServer {
struct.failure.write(oprot);
oprot.writeFieldEnd();
}
+ if (struct.error != null) {
+ oprot.writeFieldBegin(ERROR_FIELD_DESC);
+ struct.error.write(oprot);
+ oprot.writeFieldEnd();
+ }
oprot.writeFieldStop();
oprot.writeStructEnd();
}
@@ -7159,7 +7793,10 @@ public class MasterServer {
if (struct.isSetFailure()) {
optionals.set(1);
}
- oprot.writeBitSet(optionals, 2);
+ if (struct.isSetError()) {
+ optionals.set(2);
+ }
+ oprot.writeBitSet(optionals, 3);
if (struct.isSetSuccess()) {
{
oprot.writeI32(struct.success.size());
@@ -7172,12 +7809,15 @@ public class MasterServer {
if (struct.isSetFailure()) {
struct.failure.write(oprot);
}
+ if (struct.isSetError()) {
+ struct.error.write(oprot);
+ }
}
@Override
public void read(org.apache.thrift.protocol.TProtocol prot, getPublicImages_result struct) throws org.apache.thrift.TException {
TTupleProtocol iprot = (TTupleProtocol) prot;
- BitSet incoming = iprot.readBitSet(2);
+ BitSet incoming = iprot.readBitSet(3);
if (incoming.get(0)) {
{
org.apache.thrift.protocol.TList _list263 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
@@ -7197,6 +7837,721 @@ public class MasterServer {
struct.failure.read(iprot);
struct.setFailureIsSet(true);
}
+ if (incoming.get(2)) {
+ struct.error = new TInvocationException();
+ struct.error.read(iprot);
+ struct.setErrorIsSet(true);
+ }
+ }
+ }
+
+ }
+
+ public static class invalidateSession_args implements org.apache.thrift.TBase<invalidateSession_args, invalidateSession_args._Fields>, java.io.Serializable, Cloneable, Comparable<invalidateSession_args> {
+ private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("invalidateSession_args");
+
+ private static final org.apache.thrift.protocol.TField SESSION_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("sessionId", org.apache.thrift.protocol.TType.STRING, (short)1);
+
+ private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
+ static {
+ schemes.put(StandardScheme.class, new invalidateSession_argsStandardSchemeFactory());
+ schemes.put(TupleScheme.class, new invalidateSession_argsTupleSchemeFactory());
+ }
+
+ public String sessionId; // required
+
+ /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
+ public enum _Fields implements org.apache.thrift.TFieldIdEnum {
+ SESSION_ID((short)1, "sessionId");
+
+ private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
+
+ static {
+ for (_Fields field : EnumSet.allOf(_Fields.class)) {
+ byName.put(field.getFieldName(), field);
+ }
+ }
+
+ /**
+ * Find the _Fields constant that matches fieldId, or null if its not found.
+ */
+ public static _Fields findByThriftId(int fieldId) {
+ switch(fieldId) {
+ case 1: // SESSION_ID
+ return SESSION_ID;
+ default:
+ return null;
+ }
+ }
+
+ /**
+ * Find the _Fields constant that matches fieldId, throwing an exception
+ * if it is not found.
+ */
+ public static _Fields findByThriftIdOrThrow(int fieldId) {
+ _Fields fields = findByThriftId(fieldId);
+ if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
+ return fields;
+ }
+
+ /**
+ * Find the _Fields constant that matches name, or null if its not found.
+ */
+ public static _Fields findByName(String name) {
+ return byName.get(name);
+ }
+
+ private final short _thriftId;
+ private final String _fieldName;
+
+ _Fields(short thriftId, String fieldName) {
+ _thriftId = thriftId;
+ _fieldName = fieldName;
+ }
+
+ public short getThriftFieldId() {
+ return _thriftId;
+ }
+
+ public String getFieldName() {
+ return _fieldName;
+ }
+ }
+
+ // isset id assignments
+ public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
+ static {
+ Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
+ tmpMap.put(_Fields.SESSION_ID, new org.apache.thrift.meta_data.FieldMetaData("sessionId", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Token")));
+ metaDataMap = Collections.unmodifiableMap(tmpMap);
+ org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(invalidateSession_args.class, metaDataMap);
+ }
+
+ public invalidateSession_args() {
+ }
+
+ public invalidateSession_args(
+ String sessionId)
+ {
+ this();
+ this.sessionId = sessionId;
+ }
+
+ /**
+ * Performs a deep copy on <i>other</i>.
+ */
+ public invalidateSession_args(invalidateSession_args other) {
+ if (other.isSetSessionId()) {
+ this.sessionId = other.sessionId;
+ }
+ }
+
+ public invalidateSession_args deepCopy() {
+ return new invalidateSession_args(this);
+ }
+
+ @Override
+ public void clear() {
+ this.sessionId = null;
+ }
+
+ public String getSessionId() {
+ return this.sessionId;
+ }
+
+ public invalidateSession_args setSessionId(String sessionId) {
+ this.sessionId = sessionId;
+ return this;
+ }
+
+ public void unsetSessionId() {
+ this.sessionId = null;
+ }
+
+ /** Returns true if field sessionId is set (has been assigned a value) and false otherwise */
+ public boolean isSetSessionId() {
+ return this.sessionId != null;
+ }
+
+ public void setSessionIdIsSet(boolean value) {
+ if (!value) {
+ this.sessionId = null;
+ }
+ }
+
+ public void setFieldValue(_Fields field, Object value) {
+ switch (field) {
+ case SESSION_ID:
+ if (value == null) {
+ unsetSessionId();
+ } else {
+ setSessionId((String)value);
+ }
+ break;
+
+ }
+ }
+
+ public Object getFieldValue(_Fields field) {
+ switch (field) {
+ case SESSION_ID:
+ return getSessionId();
+
+ }
+ throw new IllegalStateException();
+ }
+
+ /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
+ public boolean isSet(_Fields field) {
+ if (field == null) {
+ throw new IllegalArgumentException();
+ }
+
+ switch (field) {
+ case SESSION_ID:
+ return isSetSessionId();
+ }
+ throw new IllegalStateException();
+ }
+
+ @Override
+ public boolean equals(Object that) {
+ if (that == null)
+ return false;
+ if (that instanceof invalidateSession_args)
+ return this.equals((invalidateSession_args)that);
+ return false;
+ }
+
+ public boolean equals(invalidateSession_args that) {
+ if (that == null)
+ return false;
+
+ boolean this_present_sessionId = true && this.isSetSessionId();
+ boolean that_present_sessionId = true && that.isSetSessionId();
+ if (this_present_sessionId || that_present_sessionId) {
+ if (!(this_present_sessionId && that_present_sessionId))
+ return false;
+ if (!this.sessionId.equals(that.sessionId))
+ return false;
+ }
+
+ return true;
+ }
+
+ @Override
+ public int hashCode() {
+ return 0;
+ }
+
+ @Override
+ public int compareTo(invalidateSession_args other) {
+ if (!getClass().equals(other.getClass())) {
+ return getClass().getName().compareTo(other.getClass().getName());
+ }
+
+ int lastComparison = 0;
+
+ lastComparison = Boolean.valueOf(isSetSessionId()).compareTo(other.isSetSessionId());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetSessionId()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.sessionId, other.sessionId);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
+ return 0;
+ }
+
+ public _Fields fieldForId(int fieldId) {
+ return _Fields.findByThriftId(fieldId);
+ }
+
+ public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException {
+ schemes.get(iprot.getScheme()).getScheme().read(iprot, this);
+ }
+
+ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
+ schemes.get(oprot.getScheme()).getScheme().write(oprot, this);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder("invalidateSession_args(");
+ boolean first = true;
+
+ sb.append("sessionId:");
+ if (this.sessionId == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.sessionId);
+ }
+ first = false;
+ sb.append(")");
+ return sb.toString();
+ }
+
+ public void validate() throws org.apache.thrift.TException {
+ // check for required fields
+ // check for sub-struct validity
+ }
+
+ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
+ try {
+ write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out)));
+ } catch (org.apache.thrift.TException te) {
+ throw new java.io.IOException(te);
+ }
+ }
+
+ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
+ try {
+ read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
+ } catch (org.apache.thrift.TException te) {
+ throw new java.io.IOException(te);
+ }
+ }
+
+ private static class invalidateSession_argsStandardSchemeFactory implements SchemeFactory {
+ public invalidateSession_argsStandardScheme getScheme() {
+ return new invalidateSession_argsStandardScheme();
+ }
+ }
+
+ private static class invalidateSession_argsStandardScheme extends StandardScheme<invalidateSession_args> {
+
+ 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();
+ while (true)
+ {
+ schemeField = iprot.readFieldBegin();
+ if (schemeField.type == org.apache.thrift.protocol.TType.STOP) {
+ break;
+ }
+ switch (schemeField.id) {
+ case 1: // SESSION_ID
+ if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
+ struct.sessionId = iprot.readString();
+ struct.setSessionIdIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ default:
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ iprot.readFieldEnd();
+ }
+ iprot.readStructEnd();
+
+ // check for required fields of primitive type, which can't be checked in the validate method
+ struct.validate();
+ }
+
+ public void write(org.apache.thrift.protocol.TProtocol oprot, invalidateSession_args struct) throws org.apache.thrift.TException {
+ struct.validate();
+
+ oprot.writeStructBegin(STRUCT_DESC);
+ if (struct.sessionId != null) {
+ oprot.writeFieldBegin(SESSION_ID_FIELD_DESC);
+ oprot.writeString(struct.sessionId);
+ oprot.writeFieldEnd();
+ }
+ oprot.writeFieldStop();
+ oprot.writeStructEnd();
+ }
+
+ }
+
+ private static class invalidateSession_argsTupleSchemeFactory implements SchemeFactory {
+ public invalidateSession_argsTupleScheme getScheme() {
+ return new invalidateSession_argsTupleScheme();
+ }
+ }
+
+ private static class invalidateSession_argsTupleScheme extends TupleScheme<invalidateSession_args> {
+
+ @Override
+ public void write(org.apache.thrift.protocol.TProtocol prot, invalidateSession_args struct) throws org.apache.thrift.TException {
+ TTupleProtocol oprot = (TTupleProtocol) prot;
+ BitSet optionals = new BitSet();
+ if (struct.isSetSessionId()) {
+ optionals.set(0);
+ }
+ oprot.writeBitSet(optionals, 1);
+ if (struct.isSetSessionId()) {
+ oprot.writeString(struct.sessionId);
+ }
+ }
+
+ @Override
+ public void read(org.apache.thrift.protocol.TProtocol prot, invalidateSession_args struct) throws org.apache.thrift.TException {
+ TTupleProtocol iprot = (TTupleProtocol) prot;
+ BitSet incoming = iprot.readBitSet(1);
+ if (incoming.get(0)) {
+ struct.sessionId = iprot.readString();
+ struct.setSessionIdIsSet(true);
+ }
+ }
+ }
+
+ }
+
+ public static class invalidateSession_result implements org.apache.thrift.TBase<invalidateSession_result, invalidateSession_result._Fields>, java.io.Serializable, Cloneable, Comparable<invalidateSession_result> {
+ private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("invalidateSession_result");
+
+ private static final org.apache.thrift.protocol.TField EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1);
+
+ private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
+ static {
+ schemes.put(StandardScheme.class, new invalidateSession_resultStandardSchemeFactory());
+ schemes.put(TupleScheme.class, new invalidateSession_resultTupleSchemeFactory());
+ }
+
+ public TInvalidTokenException ex; // required
+
+ /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
+ public enum _Fields implements org.apache.thrift.TFieldIdEnum {
+ EX((short)1, "ex");
+
+ private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
+
+ static {
+ for (_Fields field : EnumSet.allOf(_Fields.class)) {
+ byName.put(field.getFieldName(), field);
+ }
+ }
+
+ /**
+ * Find the _Fields constant that matches fieldId, or null if its not found.
+ */
+ public static _Fields findByThriftId(int fieldId) {
+ switch(fieldId) {
+ case 1: // EX
+ return EX;
+ default:
+ return null;
+ }
+ }
+
+ /**
+ * Find the _Fields constant that matches fieldId, throwing an exception
+ * if it is not found.
+ */
+ public static _Fields findByThriftIdOrThrow(int fieldId) {
+ _Fields fields = findByThriftId(fieldId);
+ if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
+ return fields;
+ }
+
+ /**
+ * Find the _Fields constant that matches name, or null if its not found.
+ */
+ public static _Fields findByName(String name) {
+ return byName.get(name);
+ }
+
+ private final short _thriftId;
+ private final String _fieldName;
+
+ _Fields(short thriftId, String fieldName) {
+ _thriftId = thriftId;
+ _fieldName = fieldName;
+ }
+
+ public short getThriftFieldId() {
+ return _thriftId;
+ }
+
+ public String getFieldName() {
+ return _fieldName;
+ }
+ }
+
+ // isset id assignments
+ public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
+ static {
+ Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
+ tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
+ metaDataMap = Collections.unmodifiableMap(tmpMap);
+ org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(invalidateSession_result.class, metaDataMap);
+ }
+
+ public invalidateSession_result() {
+ }
+
+ public invalidateSession_result(
+ TInvalidTokenException ex)
+ {
+ this();
+ this.ex = ex;
+ }
+
+ /**
+ * Performs a deep copy on <i>other</i>.
+ */
+ public invalidateSession_result(invalidateSession_result other) {
+ if (other.isSetEx()) {
+ this.ex = new TInvalidTokenException(other.ex);
+ }
+ }
+
+ public invalidateSession_result deepCopy() {
+ return new invalidateSession_result(this);
+ }
+
+ @Override
+ public void clear() {
+ this.ex = null;
+ }
+
+ public TInvalidTokenException getEx() {
+ return this.ex;
+ }
+
+ public invalidateSession_result setEx(TInvalidTokenException ex) {
+ this.ex = ex;
+ return this;
+ }
+
+ public void unsetEx() {
+ this.ex = null;
+ }
+
+ /** Returns true if field ex is set (has been assigned a value) and false otherwise */
+ public boolean isSetEx() {
+ return this.ex != null;
+ }
+
+ public void setExIsSet(boolean value) {
+ if (!value) {
+ this.ex = null;
+ }
+ }
+
+ public void setFieldValue(_Fields field, Object value) {
+ switch (field) {
+ case EX:
+ if (value == null) {
+ unsetEx();
+ } else {
+ setEx((TInvalidTokenException)value);
+ }
+ break;
+
+ }
+ }
+
+ public Object getFieldValue(_Fields field) {
+ switch (field) {
+ case EX:
+ return getEx();
+
+ }
+ throw new IllegalStateException();
+ }
+
+ /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
+ public boolean isSet(_Fields field) {
+ if (field == null) {
+ throw new IllegalArgumentException();
+ }
+
+ switch (field) {
+ case EX:
+ return isSetEx();
+ }
+ throw new IllegalStateException();
+ }
+
+ @Override
+ public boolean equals(Object that) {
+ if (that == null)
+ return false;
+ if (that instanceof invalidateSession_result)
+ return this.equals((invalidateSession_result)that);
+ return false;
+ }
+
+ public boolean equals(invalidateSession_result that) {
+ if (that == null)
+ return false;
+
+ boolean this_present_ex = true && this.isSetEx();
+ boolean that_present_ex = true && that.isSetEx();
+ if (this_present_ex || that_present_ex) {
+ if (!(this_present_ex && that_present_ex))
+ return false;
+ if (!this.ex.equals(that.ex))
+ return false;
+ }
+
+ return true;
+ }
+
+ @Override
+ public int hashCode() {
+ return 0;
+ }
+
+ @Override
+ public int compareTo(invalidateSession_result other) {
+ if (!getClass().equals(other.getClass())) {
+ return getClass().getName().compareTo(other.getClass().getName());
+ }
+
+ int lastComparison = 0;
+
+ lastComparison = Boolean.valueOf(isSetEx()).compareTo(other.isSetEx());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetEx()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex, other.ex);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
+ return 0;
+ }
+
+ public _Fields fieldForId(int fieldId) {
+ return _Fields.findByThriftId(fieldId);
+ }
+
+ public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException {
+ schemes.get(iprot.getScheme()).getScheme().read(iprot, this);
+ }
+
+ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
+ schemes.get(oprot.getScheme()).getScheme().write(oprot, this);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder("invalidateSession_result(");
+ boolean first = true;
+
+ sb.append("ex:");
+ if (this.ex == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.ex);
+ }
+ first = false;
+ sb.append(")");
+ return sb.toString();
+ }
+
+ public void validate() throws org.apache.thrift.TException {
+ // check for required fields
+ // check for sub-struct validity
+ }
+
+ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
+ try {
+ write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out)));
+ } catch (org.apache.thrift.TException te) {
+ throw new java.io.IOException(te);
+ }
+ }
+
+ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
+ try {
+ read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
+ } catch (org.apache.thrift.TException te) {
+ throw new java.io.IOException(te);
+ }
+ }
+
+ private static class invalidateSession_resultStandardSchemeFactory implements SchemeFactory {
+ public invalidateSession_resultStandardScheme getScheme() {
+ return new invalidateSession_resultStandardScheme();
+ }
+ }
+
+ private static class invalidateSession_resultStandardScheme extends StandardScheme<invalidateSession_result> {
+
+ 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();
+ while (true)
+ {
+ schemeField = iprot.readFieldBegin();
+ if (schemeField.type == org.apache.thrift.protocol.TType.STOP) {
+ break;
+ }
+ switch (schemeField.id) {
+ case 1: // EX
+ if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
+ struct.ex = new TInvalidTokenException();
+ struct.ex.read(iprot);
+ struct.setExIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ default:
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ iprot.readFieldEnd();
+ }
+ iprot.readStructEnd();
+
+ // check for required fields of primitive type, which can't be checked in the validate method
+ struct.validate();
+ }
+
+ public void write(org.apache.thrift.protocol.TProtocol oprot, invalidateSession_result struct) throws org.apache.thrift.TException {
+ struct.validate();
+
+ oprot.writeStructBegin(STRUCT_DESC);
+ if (struct.ex != null) {
+ oprot.writeFieldBegin(EX_FIELD_DESC);
+ struct.ex.write(oprot);
+ oprot.writeFieldEnd();
+ }
+ oprot.writeFieldStop();
+ oprot.writeStructEnd();
+ }
+
+ }
+
+ private static class invalidateSession_resultTupleSchemeFactory implements SchemeFactory {
+ public invalidateSession_resultTupleScheme getScheme() {
+ return new invalidateSession_resultTupleScheme();
+ }
+ }
+
+ private static class invalidateSession_resultTupleScheme extends TupleScheme<invalidateSession_result> {
+
+ @Override
+ public void write(org.apache.thrift.protocol.TProtocol prot, invalidateSession_result struct) throws org.apache.thrift.TException {
+ TTupleProtocol oprot = (TTupleProtocol) prot;
+ BitSet optionals = new BitSet();
+ if (struct.isSetEx()) {
+ optionals.set(0);
+ }
+ oprot.writeBitSet(optionals, 1);
+ if (struct.isSetEx()) {
+ struct.ex.write(oprot);
+ }
+ }
+
+ @Override
+ public void read(org.apache.thrift.protocol.TProtocol prot, invalidateSession_result struct) throws org.apache.thrift.TException {
+ TTupleProtocol iprot = (TTupleProtocol) prot;
+ BitSet incoming = iprot.readBitSet(1);
+ if (incoming.get(0)) {
+ struct.ex = new TInvalidTokenException();
+ struct.ex.read(iprot);
+ struct.setExIsSet(true);
+ }
}
}
@@ -9084,6 +10439,7 @@ public class MasterServer {
private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.STRING, (short)0);
private static final org.apache.thrift.protocol.TField FAILURE_FIELD_DESC = new org.apache.thrift.protocol.TField("failure", org.apache.thrift.protocol.TType.STRUCT, (short)1);
+ private static final org.apache.thrift.protocol.TField ERROR_FIELD_DESC = new org.apache.thrift.protocol.TField("error", org.apache.thrift.protocol.TType.STRUCT, (short)2);
private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
static {
@@ -9093,11 +10449,13 @@ public class MasterServer {
public ByteBuffer success; // required
public TAuthorizationException failure; // required
+ public TInvocationException error; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
SUCCESS((short)0, "success"),
- FAILURE((short)1, "failure");
+ FAILURE((short)1, "failure"),
+ ERROR((short)2, "error");
private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
@@ -9116,6 +10474,8 @@ public class MasterServer {
return SUCCESS;
case 1: // FAILURE
return FAILURE;
+ case 2: // ERROR
+ return ERROR;
default:
return null;
}
@@ -9163,6 +10523,8 @@ public class MasterServer {
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , true)));
tmpMap.put(_Fields.FAILURE, new org.apache.thrift.meta_data.FieldMetaData("failure", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
+ tmpMap.put(_Fields.ERROR, new org.apache.thrift.meta_data.FieldMetaData("error", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(startServerAuthentication_result.class, metaDataMap);
}
@@ -9172,11 +10534,13 @@ public class MasterServer {
public startServerAuthentication_result(
ByteBuffer success,
- TAuthorizationException failure)
+ TAuthorizationException failure,
+ TInvocationException error)
{
this();
this.success = success;
this.failure = failure;
+ this.error = error;
}
/**
@@ -9190,6 +10554,9 @@ public class MasterServer {
if (other.isSetFailure()) {
this.failure = new TAuthorizationException(other.failure);
}
+ if (other.isSetError()) {
+ this.error = new TInvocationException(other.error);
+ }
}
public startServerAuthentication_result deepCopy() {
@@ -9200,6 +10567,7 @@ public class MasterServer {
public void clear() {
this.success = null;
this.failure = null;
+ this.error = null;
}
public byte[] getSuccess() {
@@ -9260,6 +10628,30 @@ public class MasterServer {
}
}
+ public TInvocationException getError() {
+ return this.error;
+ }
+
+ public startServerAuthentication_result setError(TInvocationException error) {
+ this.error = error;
+ return this;
+ }
+
+ public void unsetError() {
+ this.error = null;
+ }
+
+ /** Returns true if field error is set (has been assigned a value) and false otherwise */
+ public boolean isSetError() {
+ return this.error != null;
+ }
+
+ public void setErrorIsSet(boolean value) {
+ if (!value) {
+ this.error = null;
+ }
+ }
+
public void setFieldValue(_Fields field, Object value) {
switch (field) {
case SUCCESS:
@@ -9278,6 +10670,14 @@ public class MasterServer {
}
break;
+ case ERROR:
+ if (value == null) {
+ unsetError();
+ } else {
+ setError((TInvocationException)value);
+ }
+ break;
+
}
}
@@ -9289,6 +10689,9 @@ public class MasterServer {
case FAILURE:
return getFailure();
+ case ERROR:
+ return getError();
+
}
throw new IllegalStateException();
}
@@ -9304,6 +10707,8 @@ public class MasterServer {
return isSetSuccess();
case FAILURE:
return isSetFailure();
+ case ERROR:
+ return isSetError();
}
throw new IllegalStateException();
}
@@ -9339,6 +10744,15 @@ public class MasterServer {
return false;
}
+ boolean this_present_error = true && this.isSetError();
+ boolean that_present_error = true && that.isSetError();
+ if (this_present_error || that_present_error) {
+ if (!(this_present_error && that_present_error))
+ return false;
+ if (!this.error.equals(that.error))
+ return false;
+ }
+
return true;
}
@@ -9375,6 +10789,16 @@ public class MasterServer {
return lastComparison;
}
}
+ lastComparison = Boolean.valueOf(isSetError()).compareTo(other.isSetError());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetError()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.error, other.error);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
return 0;
}
@@ -9410,6 +10834,14 @@ public class MasterServer {
sb.append(this.failure);
}
first = false;
+ if (!first) sb.append(", ");
+ sb.append("error:");
+ if (this.error == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.error);
+ }
+ first = false;
sb.append(")");
return sb.toString();
}
@@ -9470,6 +10902,15 @@ public class MasterServer {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
+ case 2: // ERROR
+ if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
+ struct.error = new TInvocationException();
+ struct.error.read(iprot);
+ struct.setErrorIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
default:
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
@@ -9495,6 +10936,11 @@ public class MasterServer {
struct.failure.write(oprot);
oprot.writeFieldEnd();
}
+ if (struct.error != null) {
+ oprot.writeFieldBegin(ERROR_FIELD_DESC);
+ struct.error.write(oprot);
+ oprot.writeFieldEnd();
+ }
oprot.writeFieldStop();
oprot.writeStructEnd();
}
@@ -9519,19 +10965,25 @@ public class MasterServer {
if (struct.isSetFailure()) {
optionals.set(1);
}
- oprot.writeBitSet(optionals, 2);
+ if (struct.isSetError()) {
+ optionals.set(2);
+ }
+ oprot.writeBitSet(optionals, 3);
if (struct.isSetSuccess()) {
oprot.writeBinary(struct.success);
}
if (struct.isSetFailure()) {
struct.failure.write(oprot);
}
+ if (struct.isSetError()) {
+ struct.error.write(oprot);
+ }
}
@Override
public void read(org.apache.thrift.protocol.TProtocol prot, startServerAuthentication_result struct) throws org.apache.thrift.TException {
TTupleProtocol iprot = (TTupleProtocol) prot;
- BitSet incoming = iprot.readBitSet(2);
+ BitSet incoming = iprot.readBitSet(3);
if (incoming.get(0)) {
struct.success = iprot.readBinary();
struct.setSuccessIsSet(true);
@@ -9541,6 +10993,11 @@ public class MasterServer {
struct.failure.read(iprot);
struct.setFailureIsSet(true);
}
+ if (incoming.get(2)) {
+ struct.error = new TInvocationException();
+ struct.error.read(iprot);
+ struct.setErrorIsSet(true);
+ }
}
}
@@ -10016,6 +11473,7 @@ public class MasterServer {
private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.STRUCT, (short)0);
private static final org.apache.thrift.protocol.TField FAILURE_FIELD_DESC = new org.apache.thrift.protocol.TField("failure", org.apache.thrift.protocol.TType.STRUCT, (short)1);
+ private static final org.apache.thrift.protocol.TField ERRR_FIELD_DESC = new org.apache.thrift.protocol.TField("errr", org.apache.thrift.protocol.TType.STRUCT, (short)2);
private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
static {
@@ -10025,11 +11483,13 @@ public class MasterServer {
public ServerSessionData success; // required
public TAuthorizationException failure; // required
+ public TInvocationException errr; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
SUCCESS((short)0, "success"),
- FAILURE((short)1, "failure");
+ FAILURE((short)1, "failure"),
+ ERRR((short)2, "errr");
private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
@@ -10048,6 +11508,8 @@ public class MasterServer {
return SUCCESS;
case 1: // FAILURE
return FAILURE;
+ case 2: // ERRR
+ return ERRR;
default:
return null;
}
@@ -10095,6 +11557,8 @@ public class MasterServer {
new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, ServerSessionData.class)));
tmpMap.put(_Fields.FAILURE, new org.apache.thrift.meta_data.FieldMetaData("failure", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
+ tmpMap.put(_Fields.ERRR, new org.apache.thrift.meta_data.FieldMetaData("errr", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(serverAuthenticate_result.class, metaDataMap);
}
@@ -10104,11 +11568,13 @@ public class MasterServer {
public serverAuthenticate_result(
ServerSessionData success,
- TAuthorizationException failure)
+ TAuthorizationException failure,
+ TInvocationException errr)
{
this();
this.success = success;
this.failure = failure;
+ this.errr = errr;
}
/**
@@ -10121,6 +11587,9 @@ public class MasterServer {
if (other.isSetFailure()) {
this.failure = new TAuthorizationException(other.failure);
}
+ if (other.isSetErrr()) {
+ this.errr = new TInvocationException(other.errr);
+ }
}
public serverAuthenticate_result deepCopy() {
@@ -10131,6 +11600,7 @@ public class MasterServer {
public void clear() {
this.success = null;
this.failure = null;
+ this.errr = null;
}
public ServerSessionData getSuccess() {
@@ -10181,6 +11651,30 @@ public class MasterServer {
}
}
+ public TInvocationException getErrr() {
+ return this.errr;
+ }
+
+ public serverAuthenticate_result setErrr(TInvocationException errr) {
+ this.errr = errr;
+ return this;
+ }
+
+ public void unsetErrr() {
+ this.errr = null;
+ }
+
+ /** Returns true if field errr is set (has been assigned a value) and false otherwise */
+ public boolean isSetErrr() {
+ return this.errr != null;
+ }
+
+ public void setErrrIsSet(boolean value) {
+ if (!value) {
+ this.errr = null;
+ }
+ }
+
public void setFieldValue(_Fields field, Object value) {
switch (field) {
case SUCCESS:
@@ -10199,6 +11693,14 @@ public class MasterServer {
}
break;
+ case ERRR:
+ if (value == null) {
+ unsetErrr();
+ } else {
+ setErrr((TInvocationException)value);
+ }
+ break;
+
}
}
@@ -10210,6 +11712,9 @@ public class MasterServer {
case FAILURE:
return getFailure();
+ case ERRR:
+ return getErrr();
+
}
throw new IllegalStateException();
}
@@ -10225,6 +11730,8 @@ public class MasterServer {
return isSetSuccess();
case FAILURE:
return isSetFailure();
+ case ERRR:
+ return isSetErrr();
}
throw new IllegalStateException();
}
@@ -10260,6 +11767,15 @@ public class MasterServer {
return false;
}
+ boolean this_present_errr = true && this.isSetErrr();
+ boolean that_present_errr = true && that.isSetErrr();
+ if (this_present_errr || that_present_errr) {
+ if (!(this_present_errr && that_present_errr))
+ return false;
+ if (!this.errr.equals(that.errr))
+ return false;
+ }
+
return true;
}
@@ -10296,6 +11812,16 @@ public class MasterServer {
return lastComparison;
}
}
+ lastComparison = Boolean.valueOf(isSetErrr()).compareTo(other.isSetErrr());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetErrr()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.errr, other.errr);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
return 0;
}
@@ -10331,6 +11857,14 @@ public class MasterServer {
sb.append(this.failure);
}
first = false;
+ if (!first) sb.append(", ");
+ sb.append("errr:");
+ if (this.errr == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.errr);
+ }
+ first = false;
sb.append(")");
return sb.toString();
}
@@ -10395,6 +11929,15 @@ public class MasterServer {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
+ case 2: // ERRR
+ if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
+ struct.errr = new TInvocationException();
+ struct.errr.read(iprot);
+ struct.setErrrIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
default:
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
@@ -10420,6 +11963,11 @@ public class MasterServer {
struct.failure.write(oprot);
oprot.writeFieldEnd();
}
+ if (struct.errr != null) {
+ oprot.writeFieldBegin(ERRR_FIELD_DESC);
+ struct.errr.write(oprot);
+ oprot.writeFieldEnd();
+ }
oprot.writeFieldStop();
oprot.writeStructEnd();
}
@@ -10444,19 +11992,25 @@ public class MasterServer {
if (struct.isSetFailure()) {
optionals.set(1);
}
- oprot.writeBitSet(optionals, 2);
+ if (struct.isSetErrr()) {
+ optionals.set(2);
+ }
+ oprot.writeBitSet(optionals, 3);
if (struct.isSetSuccess()) {
struct.success.write(oprot);
}
if (struct.isSetFailure()) {
struct.failure.write(oprot);
}
+ if (struct.isSetErrr()) {
+ struct.errr.write(oprot);
+ }
}
@Override
public void read(org.apache.thrift.protocol.TProtocol prot, serverAuthenticate_result struct) throws org.apache.thrift.TException {
TTupleProtocol iprot = (TTupleProtocol) prot;
- BitSet incoming = iprot.readBitSet(2);
+ BitSet incoming = iprot.readBitSet(3);
if (incoming.get(0)) {
struct.success = new ServerSessionData();
struct.success.read(iprot);
@@ -10467,6 +12021,11 @@ public class MasterServer {
struct.failure.read(iprot);
struct.setFailureIsSet(true);
}
+ if (incoming.get(2)) {
+ struct.errr = new TInvocationException();
+ struct.errr.read(iprot);
+ struct.setErrrIsSet(true);
+ }
}
}
@@ -11096,7 +12655,7 @@ public class MasterServer {
public TransferInformation success; // required
public TAuthorizationException failure; // required
- public TImageDataException failure2; // required
+ public TInvocationException failure2; // required
public TTransferRejectedException failure3; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
@@ -11188,7 +12747,7 @@ public class MasterServer {
public submitImage_result(
TransferInformation success,
TAuthorizationException failure,
- TImageDataException failure2,
+ TInvocationException failure2,
TTransferRejectedException failure3)
{
this();
@@ -11209,7 +12768,7 @@ public class MasterServer {
this.failure = new TAuthorizationException(other.failure);
}
if (other.isSetFailure2()) {
- this.failure2 = new TImageDataException(other.failure2);
+ this.failure2 = new TInvocationException(other.failure2);
}
if (other.isSetFailure3()) {
this.failure3 = new TTransferRejectedException(other.failure3);
@@ -11276,11 +12835,11 @@ public class MasterServer {
}
}
- public TImageDataException getFailure2() {
+ public TInvocationException getFailure2() {
return this.failure2;
}
- public submitImage_result setFailure2(TImageDataException failure2) {
+ public submitImage_result setFailure2(TInvocationException failure2) {
this.failure2 = failure2;
return this;
}
@@ -11346,7 +12905,7 @@ public class MasterServer {
if (value == null) {
unsetFailure2();
} else {
- setFailure2((TImageDataException)value);
+ setFailure2((TInvocationException)value);
}
break;
@@ -11620,7 +13179,7 @@ public class MasterServer {
break;
case 2: // FAILURE2
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.failure2 = new TImageDataException();
+ struct.failure2 = new TInvocationException();
struct.failure2.read(iprot);
struct.setFailure2IsSet(true);
} else {
@@ -11731,7 +13290,7 @@ public class MasterServer {
struct.setFailureIsSet(true);
}
if (incoming.get(2)) {
- struct.failure2 = new TImageDataException();
+ struct.failure2 = new TInvocationException();
struct.failure2.read(iprot);
struct.setFailure2IsSet(true);
}
@@ -12214,7 +13773,7 @@ public class MasterServer {
public TransferInformation success; // required
public TAuthorizationException failure; // required
- public TImageDataException failure2; // required
+ public TInvocationException failure2; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
@@ -12300,7 +13859,7 @@ public class MasterServer {
public getImage_result(
TransferInformation success,
TAuthorizationException failure,
- TImageDataException failure2)
+ TInvocationException failure2)
{
this();
this.success = success;
@@ -12319,7 +13878,7 @@ public class MasterServer {
this.failure = new TAuthorizationException(other.failure);
}
if (other.isSetFailure2()) {
- this.failure2 = new TImageDataException(other.failure2);
+ this.failure2 = new TInvocationException(other.failure2);
}
}
@@ -12382,11 +13941,11 @@ public class MasterServer {
}
}
- public TImageDataException getFailure2() {
+ public TInvocationException getFailure2() {
return this.failure2;
}
- public getImage_result setFailure2(TImageDataException failure2) {
+ public getImage_result setFailure2(TInvocationException failure2) {
this.failure2 = failure2;
return this;
}
@@ -12428,7 +13987,7 @@ public class MasterServer {
if (value == null) {
unsetFailure2();
} else {
- setFailure2((TImageDataException)value);
+ setFailure2((TInvocationException)value);
}
break;
@@ -12662,7 +14221,7 @@ public class MasterServer {
break;
case 2: // FAILURE2
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.failure2 = new TImageDataException();
+ struct.failure2 = new TInvocationException();
struct.failure2.read(iprot);
struct.setFailure2IsSet(true);
} else {
@@ -12753,7 +14312,7 @@ public class MasterServer {
struct.setFailureIsSet(true);
}
if (incoming.get(2)) {
- struct.failure2 = new TImageDataException();
+ struct.failure2 = new TInvocationException();
struct.failure2.read(iprot);
struct.setFailure2IsSet(true);
}
@@ -13420,6 +14979,7 @@ public class MasterServer {
private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("registerSatellite_result");
private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.BOOL, (short)0);
+ private static final org.apache.thrift.protocol.TField ERROR_FIELD_DESC = new org.apache.thrift.protocol.TField("error", org.apache.thrift.protocol.TType.STRUCT, (short)1);
private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
static {
@@ -13428,10 +14988,12 @@ public class MasterServer {
}
public boolean success; // required
+ public TInvocationException error; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
- SUCCESS((short)0, "success");
+ SUCCESS((short)0, "success"),
+ ERROR((short)1, "error");
private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
@@ -13448,6 +15010,8 @@ public class MasterServer {
switch(fieldId) {
case 0: // SUCCESS
return SUCCESS;
+ case 1: // ERROR
+ return ERROR;
default:
return null;
}
@@ -13495,6 +15059,8 @@ public class MasterServer {
Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL)));
+ tmpMap.put(_Fields.ERROR, new org.apache.thrift.meta_data.FieldMetaData("error", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(registerSatellite_result.class, metaDataMap);
}
@@ -13503,11 +15069,13 @@ public class MasterServer {
}
public registerSatellite_result(
- boolean success)
+ boolean success,
+ TInvocationException error)
{
this();
this.success = success;
setSuccessIsSet(true);
+ this.error = error;
}
/**
@@ -13516,6 +15084,9 @@ public class MasterServer {
public registerSatellite_result(registerSatellite_result other) {
__isset_bitfield = other.__isset_bitfield;
this.success = other.success;
+ if (other.isSetError()) {
+ this.error = new TInvocationException(other.error);
+ }
}
public registerSatellite_result deepCopy() {
@@ -13526,6 +15097,7 @@ public class MasterServer {
public void clear() {
setSuccessIsSet(false);
this.success = false;
+ this.error = null;
}
public boolean isSuccess() {
@@ -13551,6 +15123,30 @@ public class MasterServer {
__isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value);
}
+ public TInvocationException getError() {
+ return this.error;
+ }
+
+ public registerSatellite_result setError(TInvocationException error) {
+ this.error = error;
+ return this;
+ }
+
+ public void unsetError() {
+ this.error = null;
+ }
+
+ /** Returns true if field error is set (has been assigned a value) and false otherwise */
+ public boolean isSetError() {
+ return this.error != null;
+ }
+
+ public void setErrorIsSet(boolean value) {
+ if (!value) {
+ this.error = null;
+ }
+ }
+
public void setFieldValue(_Fields field, Object value) {
switch (field) {
case SUCCESS:
@@ -13561,6 +15157,14 @@ public class MasterServer {
}
break;
+ case ERROR:
+ if (value == null) {
+ unsetError();
+ } else {
+ setError((TInvocationException)value);
+ }
+ break;
+
}
}
@@ -13569,6 +15173,9 @@ public class MasterServer {
case SUCCESS:
return Boolean.valueOf(isSuccess());
+ case ERROR:
+ return getError();
+
}
throw new IllegalStateException();
}
@@ -13582,6 +15189,8 @@ public class MasterServer {
switch (field) {
case SUCCESS:
return isSetSuccess();
+ case ERROR:
+ return isSetError();
}
throw new IllegalStateException();
}
@@ -13608,6 +15217,15 @@ public class MasterServer {
return false;
}
+ boolean this_present_error = true && this.isSetError();
+ boolean that_present_error = true && that.isSetError();
+ if (this_present_error || that_present_error) {
+ if (!(this_present_error && that_present_error))
+ return false;
+ if (!this.error.equals(that.error))
+ return false;
+ }
+
return true;
}
@@ -13634,6 +15252,16 @@ public class MasterServer {
return lastComparison;
}
}
+ lastComparison = Boolean.valueOf(isSetError()).compareTo(other.isSetError());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetError()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.error, other.error);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
return 0;
}
@@ -13657,6 +15285,14 @@ public class MasterServer {
sb.append("success:");
sb.append(this.success);
first = false;
+ if (!first) sb.append(", ");
+ sb.append("error:");
+ if (this.error == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.error);
+ }
+ first = false;
sb.append(")");
return sb.toString();
}
@@ -13710,6 +15346,15 @@ public class MasterServer {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
+ case 1: // ERROR
+ if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
+ struct.error = new TInvocationException();
+ struct.error.read(iprot);
+ struct.setErrorIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
default:
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
@@ -13730,6 +15375,11 @@ public class MasterServer {
oprot.writeBool(struct.success);
oprot.writeFieldEnd();
}
+ if (struct.error != null) {
+ oprot.writeFieldBegin(ERROR_FIELD_DESC);
+ struct.error.write(oprot);
+ oprot.writeFieldEnd();
+ }
oprot.writeFieldStop();
oprot.writeStructEnd();
}
@@ -13751,20 +15401,31 @@ public class MasterServer {
if (struct.isSetSuccess()) {
optionals.set(0);
}
- oprot.writeBitSet(optionals, 1);
+ if (struct.isSetError()) {
+ optionals.set(1);
+ }
+ oprot.writeBitSet(optionals, 2);
if (struct.isSetSuccess()) {
oprot.writeBool(struct.success);
}
+ if (struct.isSetError()) {
+ struct.error.write(oprot);
+ }
}
@Override
public void read(org.apache.thrift.protocol.TProtocol prot, registerSatellite_result struct) throws org.apache.thrift.TException {
TTupleProtocol iprot = (TTupleProtocol) prot;
- BitSet incoming = iprot.readBitSet(1);
+ BitSet incoming = iprot.readBitSet(2);
if (incoming.get(0)) {
struct.success = iprot.readBool();
struct.setSuccessIsSet(true);
}
+ if (incoming.get(1)) {
+ struct.error = new TInvocationException();
+ struct.error.read(iprot);
+ struct.setErrorIsSet(true);
+ }
}
}
@@ -14228,6 +15889,8 @@ public class MasterServer {
private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("updateSatelliteAddress_result");
private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.BOOL, (short)0);
+ private static final org.apache.thrift.protocol.TField FAILURE_FIELD_DESC = new org.apache.thrift.protocol.TField("failure", org.apache.thrift.protocol.TType.STRUCT, (short)1);
+ private static final org.apache.thrift.protocol.TField ERROR_FIELD_DESC = new org.apache.thrift.protocol.TField("error", org.apache.thrift.protocol.TType.STRUCT, (short)2);
private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
static {
@@ -14236,10 +15899,14 @@ public class MasterServer {
}
public boolean success; // required
+ public TAuthorizationException failure; // required
+ public TInvocationException error; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
- SUCCESS((short)0, "success");
+ SUCCESS((short)0, "success"),
+ FAILURE((short)1, "failure"),
+ ERROR((short)2, "error");
private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
@@ -14256,6 +15923,10 @@ public class MasterServer {
switch(fieldId) {
case 0: // SUCCESS
return SUCCESS;
+ case 1: // FAILURE
+ return FAILURE;
+ case 2: // ERROR
+ return ERROR;
default:
return null;
}
@@ -14303,6 +15974,10 @@ public class MasterServer {
Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL)));
+ tmpMap.put(_Fields.FAILURE, new org.apache.thrift.meta_data.FieldMetaData("failure", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
+ tmpMap.put(_Fields.ERROR, new org.apache.thrift.meta_data.FieldMetaData("error", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(updateSatelliteAddress_result.class, metaDataMap);
}
@@ -14311,11 +15986,15 @@ public class MasterServer {
}
public updateSatelliteAddress_result(
- boolean success)
+ boolean success,
+ TAuthorizationException failure,
+ TInvocationException error)
{
this();
this.success = success;
setSuccessIsSet(true);
+ this.failure = failure;
+ this.error = error;
}
/**
@@ -14324,6 +16003,12 @@ public class MasterServer {
public updateSatelliteAddress_result(updateSatelliteAddress_result other) {
__isset_bitfield = other.__isset_bitfield;
this.success = other.success;
+ if (other.isSetFailure()) {
+ this.failure = new TAuthorizationException(other.failure);
+ }
+ if (other.isSetError()) {
+ this.error = new TInvocationException(other.error);
+ }
}
public updateSatelliteAddress_result deepCopy() {
@@ -14334,6 +16019,8 @@ public class MasterServer {
public void clear() {
setSuccessIsSet(false);
this.success = false;
+ this.failure = null;
+ this.error = null;
}
public boolean isSuccess() {
@@ -14359,6 +16046,54 @@ public class MasterServer {
__isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value);
}
+ public TAuthorizationException getFailure() {
+ return this.failure;
+ }
+
+ public updateSatelliteAddress_result setFailure(TAuthorizationException failure) {
+ this.failure = failure;
+ return this;
+ }
+
+ public void unsetFailure() {
+ this.failure = null;
+ }
+
+ /** Returns true if field failure is set (has been assigned a value) and false otherwise */
+ public boolean isSetFailure() {
+ return this.failure != null;
+ }
+
+ public void setFailureIsSet(boolean value) {
+ if (!value) {
+ this.failure = null;
+ }
+ }
+
+ public TInvocationException getError() {
+ return this.error;
+ }
+
+ public updateSatelliteAddress_result setError(TInvocationException error) {
+ this.error = error;
+ return this;
+ }
+
+ public void unsetError() {
+ this.error = null;
+ }
+
+ /** Returns true if field error is set (has been assigned a value) and false otherwise */
+ public boolean isSetError() {
+ return this.error != null;
+ }
+
+ public void setErrorIsSet(boolean value) {
+ if (!value) {
+ this.error = null;
+ }
+ }
+
public void setFieldValue(_Fields field, Object value) {
switch (field) {
case SUCCESS:
@@ -14369,6 +16104,22 @@ public class MasterServer {
}
break;
+ case FAILURE:
+ if (value == null) {
+ unsetFailure();
+ } else {
+ setFailure((TAuthorizationException)value);
+ }
+ break;
+
+ case ERROR:
+ if (value == null) {
+ unsetError();
+ } else {
+ setError((TInvocationException)value);
+ }
+ break;
+
}
}
@@ -14377,6 +16128,12 @@ public class MasterServer {
case SUCCESS:
return Boolean.valueOf(isSuccess());
+ case FAILURE:
+ return getFailure();
+
+ case ERROR:
+ return getError();
+
}
throw new IllegalStateException();
}
@@ -14390,6 +16147,10 @@ public class MasterServer {
switch (field) {
case SUCCESS:
return isSetSuccess();
+ case FAILURE:
+ return isSetFailure();
+ case ERROR:
+ return isSetError();
}
throw new IllegalStateException();
}
@@ -14416,6 +16177,24 @@ public class MasterServer {
return false;
}
+ boolean this_present_failure = true && this.isSetFailure();
+ boolean that_present_failure = true && that.isSetFailure();
+ if (this_present_failure || that_present_failure) {
+ if (!(this_present_failure && that_present_failure))
+ return false;
+ if (!this.failure.equals(that.failure))
+ return false;
+ }
+
+ boolean this_present_error = true && this.isSetError();
+ boolean that_present_error = true && that.isSetError();
+ if (this_present_error || that_present_error) {
+ if (!(this_present_error && that_present_error))
+ return false;
+ if (!this.error.equals(that.error))
+ return false;
+ }
+
return true;
}
@@ -14442,6 +16221,26 @@ public class MasterServer {
return lastComparison;
}
}
+ lastComparison = Boolean.valueOf(isSetFailure()).compareTo(other.isSetFailure());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetFailure()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.failure, other.failure);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
+ lastComparison = Boolean.valueOf(isSetError()).compareTo(other.isSetError());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetError()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.error, other.error);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
return 0;
}
@@ -14465,6 +16264,22 @@ public class MasterServer {
sb.append("success:");
sb.append(this.success);
first = false;
+ if (!first) sb.append(", ");
+ sb.append("failure:");
+ if (this.failure == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.failure);
+ }
+ first = false;
+ if (!first) sb.append(", ");
+ sb.append("error:");
+ if (this.error == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.error);
+ }
+ first = false;
sb.append(")");
return sb.toString();
}
@@ -14518,6 +16333,24 @@ public class MasterServer {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
+ case 1: // FAILURE
+ if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
+ struct.failure = new TAuthorizationException();
+ struct.failure.read(iprot);
+ struct.setFailureIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ case 2: // ERROR
+ if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
+ struct.error = new TInvocationException();
+ struct.error.read(iprot);
+ struct.setErrorIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
default:
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
@@ -14538,6 +16371,16 @@ public class MasterServer {
oprot.writeBool(struct.success);
oprot.writeFieldEnd();
}
+ if (struct.failure != null) {
+ oprot.writeFieldBegin(FAILURE_FIELD_DESC);
+ struct.failure.write(oprot);
+ oprot.writeFieldEnd();
+ }
+ if (struct.error != null) {
+ oprot.writeFieldBegin(ERROR_FIELD_DESC);
+ struct.error.write(oprot);
+ oprot.writeFieldEnd();
+ }
oprot.writeFieldStop();
oprot.writeStructEnd();
}
@@ -14559,20 +16402,42 @@ public class MasterServer {
if (struct.isSetSuccess()) {
optionals.set(0);
}
- oprot.writeBitSet(optionals, 1);
+ if (struct.isSetFailure()) {
+ optionals.set(1);
+ }
+ if (struct.isSetError()) {
+ optionals.set(2);
+ }
+ oprot.writeBitSet(optionals, 3);
if (struct.isSetSuccess()) {
oprot.writeBool(struct.success);
}
+ if (struct.isSetFailure()) {
+ struct.failure.write(oprot);
+ }
+ if (struct.isSetError()) {
+ struct.error.write(oprot);
+ }
}
@Override
public void read(org.apache.thrift.protocol.TProtocol prot, updateSatelliteAddress_result struct) throws org.apache.thrift.TException {
TTupleProtocol iprot = (TTupleProtocol) prot;
- BitSet incoming = iprot.readBitSet(1);
+ BitSet incoming = iprot.readBitSet(3);
if (incoming.get(0)) {
struct.success = iprot.readBool();
struct.setSuccessIsSet(true);
}
+ if (incoming.get(1)) {
+ struct.failure = new TAuthorizationException();
+ struct.failure.read(iprot);
+ struct.setFailureIsSet(true);
+ }
+ if (incoming.get(2)) {
+ struct.error = new TInvocationException();
+ struct.error.read(iprot);
+ struct.setErrorIsSet(true);
+ }
}
}
@@ -14837,7 +16702,7 @@ public class MasterServer {
}
public List<Organization> success; // required
- public TInternalServerError serverError; // required
+ public TInvocationException serverError; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
@@ -14918,7 +16783,7 @@ public class MasterServer {
public getOrganizations_result(
List<Organization> success,
- TInternalServerError serverError)
+ TInvocationException serverError)
{
this();
this.success = success;
@@ -14937,7 +16802,7 @@ public class MasterServer {
this.success = __this__success;
}
if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ this.serverError = new TInvocationException(other.serverError);
}
}
@@ -14990,11 +16855,11 @@ public class MasterServer {
}
}
- public TInternalServerError getServerError() {
+ public TInvocationException getServerError() {
return this.serverError;
}
- public getOrganizations_result setServerError(TInternalServerError serverError) {
+ public getOrganizations_result setServerError(TInvocationException serverError) {
this.serverError = serverError;
return this;
}
@@ -15028,7 +16893,7 @@ public class MasterServer {
if (value == null) {
unsetServerError();
} else {
- setServerError((TInternalServerError)value);
+ setServerError((TInvocationException)value);
}
break;
@@ -15228,7 +17093,7 @@ public class MasterServer {
break;
case 1: // SERVER_ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
} else {
@@ -15325,7 +17190,7 @@ public class MasterServer {
struct.setSuccessIsSet(true);
}
if (incoming.get(1)) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
}
@@ -15593,7 +17458,7 @@ public class MasterServer {
}
public List<OperatingSystem> success; // required
- public TInternalServerError serverError; // required
+ public TInvocationException serverError; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
@@ -15674,7 +17539,7 @@ public class MasterServer {
public getOperatingSystems_result(
List<OperatingSystem> success,
- TInternalServerError serverError)
+ TInvocationException serverError)
{
this();
this.success = success;
@@ -15693,7 +17558,7 @@ public class MasterServer {
this.success = __this__success;
}
if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ this.serverError = new TInvocationException(other.serverError);
}
}
@@ -15746,11 +17611,11 @@ public class MasterServer {
}
}
- public TInternalServerError getServerError() {
+ public TInvocationException getServerError() {
return this.serverError;
}
- public getOperatingSystems_result setServerError(TInternalServerError serverError) {
+ public getOperatingSystems_result setServerError(TInvocationException serverError) {
this.serverError = serverError;
return this;
}
@@ -15784,7 +17649,7 @@ public class MasterServer {
if (value == null) {
unsetServerError();
} else {
- setServerError((TInternalServerError)value);
+ setServerError((TInvocationException)value);
}
break;
@@ -15984,7 +17849,7 @@ public class MasterServer {
break;
case 1: // SERVER_ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
} else {
@@ -16081,7 +17946,7 @@ public class MasterServer {
struct.setSuccessIsSet(true);
}
if (incoming.get(1)) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
}
@@ -16349,7 +18214,7 @@ public class MasterServer {
}
public List<Virtualizer> success; // required
- public TInternalServerError serverError; // required
+ public TInvocationException serverError; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
@@ -16430,7 +18295,7 @@ public class MasterServer {
public getVirtualizers_result(
List<Virtualizer> success,
- TInternalServerError serverError)
+ TInvocationException serverError)
{
this();
this.success = success;
@@ -16449,7 +18314,7 @@ public class MasterServer {
this.success = __this__success;
}
if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ this.serverError = new TInvocationException(other.serverError);
}
}
@@ -16502,11 +18367,11 @@ public class MasterServer {
}
}
- public TInternalServerError getServerError() {
+ public TInvocationException getServerError() {
return this.serverError;
}
- public getVirtualizers_result setServerError(TInternalServerError serverError) {
+ public getVirtualizers_result setServerError(TInvocationException serverError) {
this.serverError = serverError;
return this;
}
@@ -16540,7 +18405,7 @@ public class MasterServer {
if (value == null) {
unsetServerError();
} else {
- setServerError((TInternalServerError)value);
+ setServerError((TInvocationException)value);
}
break;
@@ -16740,7 +18605,7 @@ public class MasterServer {
break;
case 1: // SERVER_ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
} else {
@@ -16837,7 +18702,7 @@ public class MasterServer {
struct.setSuccessIsSet(true);
}
if (incoming.get(1)) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
}
@@ -17211,7 +19076,7 @@ public class MasterServer {
}
public List<MasterTag> success; // required
- public TInternalServerError serverError; // required
+ public TInvocationException serverError; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
@@ -17292,7 +19157,7 @@ public class MasterServer {
public getTags_result(
List<MasterTag> success,
- TInternalServerError serverError)
+ TInvocationException serverError)
{
this();
this.success = success;
@@ -17311,7 +19176,7 @@ public class MasterServer {
this.success = __this__success;
}
if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ this.serverError = new TInvocationException(other.serverError);
}
}
@@ -17364,11 +19229,11 @@ public class MasterServer {
}
}
- public TInternalServerError getServerError() {
+ public TInvocationException getServerError() {
return this.serverError;
}
- public getTags_result setServerError(TInternalServerError serverError) {
+ public getTags_result setServerError(TInvocationException serverError) {
this.serverError = serverError;
return this;
}
@@ -17402,7 +19267,7 @@ public class MasterServer {
if (value == null) {
unsetServerError();
} else {
- setServerError((TInternalServerError)value);
+ setServerError((TInvocationException)value);
}
break;
@@ -17602,7 +19467,7 @@ public class MasterServer {
break;
case 1: // SERVER_ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
} else {
@@ -17699,7 +19564,7 @@ public class MasterServer {
struct.setSuccessIsSet(true);
}
if (incoming.get(1)) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
}
@@ -18073,7 +19938,7 @@ public class MasterServer {
}
public List<MasterSoftware> success; // required
- public TInternalServerError serverError; // required
+ public TInvocationException serverError; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
@@ -18154,7 +20019,7 @@ public class MasterServer {
public getSoftware_result(
List<MasterSoftware> success,
- TInternalServerError serverError)
+ TInvocationException serverError)
{
this();
this.success = success;
@@ -18173,7 +20038,7 @@ public class MasterServer {
this.success = __this__success;
}
if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ this.serverError = new TInvocationException(other.serverError);
}
}
@@ -18226,11 +20091,11 @@ public class MasterServer {
}
}
- public TInternalServerError getServerError() {
+ public TInvocationException getServerError() {
return this.serverError;
}
- public getSoftware_result setServerError(TInternalServerError serverError) {
+ public getSoftware_result setServerError(TInvocationException serverError) {
this.serverError = serverError;
return this;
}
@@ -18264,7 +20129,7 @@ public class MasterServer {
if (value == null) {
unsetServerError();
} else {
- setServerError((TInternalServerError)value);
+ setServerError((TInvocationException)value);
}
break;
@@ -18464,7 +20329,7 @@ public class MasterServer {
break;
case 1: // SERVER_ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
} else {
@@ -18561,7 +20426,7 @@ public class MasterServer {
struct.setSuccessIsSet(true);
}
if (incoming.get(1)) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
}
diff --git a/src/main/java/org/openslx/bwlp/thrift/iface/SatelliteServer.java b/src/main/java/org/openslx/bwlp/thrift/iface/SatelliteServer.java
index f3f80ab..c02eb36 100644
--- a/src/main/java/org/openslx/bwlp/thrift/iface/SatelliteServer.java
+++ b/src/main/java/org/openslx/bwlp/thrift/iface/SatelliteServer.java
@@ -40,7 +40,7 @@ public class SatelliteServer {
public SatelliteConfig getConfiguration() throws org.apache.thrift.TException;
- public TransferInformation requestImageVersionUpload(String userToken, String imageBaseId, long fileSize, List<ByteBuffer> blockHashes, ByteBuffer machineDescription) throws TTransferRejectedException, TAuthorizationException, TInternalServerError, TNotFoundException, org.apache.thrift.TException;
+ public TransferInformation requestImageVersionUpload(String userToken, String imageBaseId, long fileSize, List<ByteBuffer> blockHashes, ByteBuffer machineDescription) throws TTransferRejectedException, TAuthorizationException, TInvocationException, TNotFoundException, org.apache.thrift.TException;
public void updateBlockHashes(String uploadToken, List<ByteBuffer> blockHashes) throws TInvalidTokenException, org.apache.thrift.TException;
@@ -48,19 +48,23 @@ public class SatelliteServer {
public TransferStatus queryUploadStatus(String uploadToken) throws TInvalidTokenException, org.apache.thrift.TException;
- public TransferInformation requestDownload(String userToken, String imageVersionId) throws TTransferRejectedException, TAuthorizationException, TInternalServerError, TNotFoundException, org.apache.thrift.TException;
+ public TransferInformation requestDownload(String userToken, String imageVersionId) throws TTransferRejectedException, TAuthorizationException, TInvocationException, TNotFoundException, org.apache.thrift.TException;
public void cancelDownload(String downloadToken) throws TInvalidTokenException, org.apache.thrift.TException;
- public ByteBuffer getMachineDescription(String userToken, String imageVersionId) throws TAuthorizationException, TInternalServerError, TNotFoundException, org.apache.thrift.TException;
+ public ByteBuffer getMachineDescription(String userToken, String imageVersionId) throws TAuthorizationException, TInvocationException, TNotFoundException, org.apache.thrift.TException;
- public void isAuthenticated(String userToken) throws TAuthorizationException, TInternalServerError, org.apache.thrift.TException;
+ public void isAuthenticated(String userToken) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException;
- public WhoamiInfo whoami(String userToken) throws TAuthorizationException, TInternalServerError, org.apache.thrift.TException;
+ public WhoamiInfo whoami(String userToken) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException;
- public void invalidateSession(String userToken) throws org.apache.thrift.TException;
+ public void invalidateSession(String userToken) throws TInvalidTokenException, org.apache.thrift.TException;
- public List<UserInfo> getUserList(String userToken, int page) throws TAuthorizationException, TInternalServerError, org.apache.thrift.TException;
+ public List<UserInfo> getUserList(String userToken, int page) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException;
+
+ public SatelliteUserConfig getUserConfig(String userToken) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException;
+
+ public void setUserConfig(String userToken, SatelliteUserConfig config) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException;
public List<OperatingSystem> getOperatingSystems() throws org.apache.thrift.TException;
@@ -68,43 +72,45 @@ public class SatelliteServer {
public List<Organization> getAllOrganizations() throws org.apache.thrift.TException;
- public List<ImageSummaryRead> getImageList(String userToken, List<String> tagSearch, int page) throws TAuthorizationException, TInternalServerError, org.apache.thrift.TException;
+ public SatelliteStatus getStatus() throws org.apache.thrift.TException;
+
+ public List<ImageSummaryRead> getImageList(String userToken, List<String> tagSearch, int page) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException;
- public ImageDetailsRead getImageDetails(String userToken, String imageBaseId) throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException;
+ public ImageDetailsRead getImageDetails(String userToken, String imageBaseId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException;
- public String createImage(String userToken, String imageName) throws TAuthorizationException, TImageDataException, TInternalServerError, org.apache.thrift.TException;
+ public String createImage(String userToken, String imageName) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException;
- public void updateImageBase(String userToken, String imageBaseId, ImageBaseWrite image) throws TAuthorizationException, TNotFoundException, TImageDataException, TInternalServerError, org.apache.thrift.TException;
+ public void updateImageBase(String userToken, String imageBaseId, ImageBaseWrite image) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException;
- public void updateImageVersion(String userToken, String imageVersionId, ImageVersionWrite image) throws TAuthorizationException, TNotFoundException, TImageDataException, TInternalServerError, org.apache.thrift.TException;
+ public void updateImageVersion(String userToken, String imageVersionId, ImageVersionWrite image) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException;
- public void deleteImageVersion(String userToken, String imageVersionId) throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException;
+ public void deleteImageVersion(String userToken, String imageVersionId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException;
- public void deleteImageBase(String userToken, String imageBaseId) throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException;
+ public void deleteImageBase(String userToken, String imageBaseId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException;
- public void writeImagePermissions(String userToken, String imageBaseId, Map<String,ImagePermissions> permissions) throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException;
+ public void writeImagePermissions(String userToken, String imageBaseId, Map<String,ImagePermissions> permissions) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException;
- public Map<String,ImagePermissions> getImagePermissions(String userToken, String imageBaseId) throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException;
+ public Map<String,ImagePermissions> getImagePermissions(String userToken, String imageBaseId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException;
- public void setImageOwner(String userToken, String imageBaseId, String newOwnerId) throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException;
+ public void setImageOwner(String userToken, String imageBaseId, String newOwnerId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException;
- public void setImageVersionExpiry(String userToken, String imageBaseId, long expireTime) throws TAuthorizationException, TNotFoundException, TInternalServerError, TInvalidDateParam, org.apache.thrift.TException;
+ public void setImageVersionExpiry(String userToken, String imageBaseId, long expireTime) throws TAuthorizationException, TNotFoundException, TInvocationException, TInvalidDateParam, org.apache.thrift.TException;
- public String createLecture(String userToken, LectureWrite lecture) throws TAuthorizationException, TInternalServerError, TInvalidDateParam, org.apache.thrift.TException;
+ public String createLecture(String userToken, LectureWrite lecture) throws TAuthorizationException, TInvocationException, TInvalidDateParam, org.apache.thrift.TException;
- public void updateLecture(String userToken, String lectureId, LectureWrite lecture) throws TAuthorizationException, TNotFoundException, TInternalServerError, TInvalidDateParam, org.apache.thrift.TException;
+ public void updateLecture(String userToken, String lectureId, LectureWrite lecture) throws TAuthorizationException, TNotFoundException, TInvocationException, TInvalidDateParam, org.apache.thrift.TException;
- public List<LectureSummary> getLectureList(String userToken, int page) throws TAuthorizationException, TInternalServerError, org.apache.thrift.TException;
+ public List<LectureSummary> getLectureList(String userToken, int page) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException;
- public LectureRead getLectureDetails(String userToken, String lectureId) throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException;
+ public LectureRead getLectureDetails(String userToken, String lectureId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException;
- public void deleteLecture(String userToken, String lectureId) throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException;
+ public void deleteLecture(String userToken, String lectureId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException;
- public void writeLecturePermissions(String userToken, String lectureId, Map<String,LecturePermissions> permissions) throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException;
+ public void writeLecturePermissions(String userToken, String lectureId, Map<String,LecturePermissions> permissions) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException;
- public Map<String,LecturePermissions> getLecturePermissions(String userToken, String lectureId) throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException;
+ public Map<String,LecturePermissions> getLecturePermissions(String userToken, String lectureId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException;
- public void setLectureOwner(String userToken, String lectureId, String newOwnerId) throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException;
+ public void setLectureOwner(String userToken, String lectureId, String newOwnerId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException;
}
@@ -136,12 +142,18 @@ public class SatelliteServer {
public void getUserList(String userToken, int page, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
+ public void getUserConfig(String userToken, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
+
+ public void setUserConfig(String userToken, SatelliteUserConfig config, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
+
public void getOperatingSystems(org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
public void getVirtualizers(org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
public void getAllOrganizations(org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
+ public void getStatus(org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
+
public void getImageList(String userToken, List<String> tagSearch, int page, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
public void getImageDetails(String userToken, String imageBaseId, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
@@ -246,7 +258,7 @@ public class SatelliteServer {
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getConfiguration failed: unknown result");
}
- public TransferInformation requestImageVersionUpload(String userToken, String imageBaseId, long fileSize, List<ByteBuffer> blockHashes, ByteBuffer machineDescription) throws TTransferRejectedException, TAuthorizationException, TInternalServerError, TNotFoundException, org.apache.thrift.TException
+ public TransferInformation requestImageVersionUpload(String userToken, String imageBaseId, long fileSize, List<ByteBuffer> blockHashes, ByteBuffer machineDescription) throws TTransferRejectedException, TAuthorizationException, TInvocationException, TNotFoundException, org.apache.thrift.TException
{
send_requestImageVersionUpload(userToken, imageBaseId, fileSize, blockHashes, machineDescription);
return recv_requestImageVersionUpload();
@@ -263,7 +275,7 @@ public class SatelliteServer {
sendBase("requestImageVersionUpload", args);
}
- public TransferInformation recv_requestImageVersionUpload() throws TTransferRejectedException, TAuthorizationException, TInternalServerError, TNotFoundException, org.apache.thrift.TException
+ public TransferInformation recv_requestImageVersionUpload() throws TTransferRejectedException, TAuthorizationException, TInvocationException, TNotFoundException, org.apache.thrift.TException
{
requestImageVersionUpload_result result = new requestImageVersionUpload_result();
receiveBase(result, "requestImageVersionUpload");
@@ -358,7 +370,7 @@ public class SatelliteServer {
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "queryUploadStatus failed: unknown result");
}
- public TransferInformation requestDownload(String userToken, String imageVersionId) throws TTransferRejectedException, TAuthorizationException, TInternalServerError, TNotFoundException, org.apache.thrift.TException
+ public TransferInformation requestDownload(String userToken, String imageVersionId) throws TTransferRejectedException, TAuthorizationException, TInvocationException, TNotFoundException, org.apache.thrift.TException
{
send_requestDownload(userToken, imageVersionId);
return recv_requestDownload();
@@ -372,7 +384,7 @@ public class SatelliteServer {
sendBase("requestDownload", args);
}
- public TransferInformation recv_requestDownload() throws TTransferRejectedException, TAuthorizationException, TInternalServerError, TNotFoundException, org.apache.thrift.TException
+ public TransferInformation recv_requestDownload() throws TTransferRejectedException, TAuthorizationException, TInvocationException, TNotFoundException, org.apache.thrift.TException
{
requestDownload_result result = new requestDownload_result();
receiveBase(result, "requestDownload");
@@ -417,7 +429,7 @@ public class SatelliteServer {
return;
}
- public ByteBuffer getMachineDescription(String userToken, String imageVersionId) throws TAuthorizationException, TInternalServerError, TNotFoundException, org.apache.thrift.TException
+ public ByteBuffer getMachineDescription(String userToken, String imageVersionId) throws TAuthorizationException, TInvocationException, TNotFoundException, org.apache.thrift.TException
{
send_getMachineDescription(userToken, imageVersionId);
return recv_getMachineDescription();
@@ -431,7 +443,7 @@ public class SatelliteServer {
sendBase("getMachineDescription", args);
}
- public ByteBuffer recv_getMachineDescription() throws TAuthorizationException, TInternalServerError, TNotFoundException, org.apache.thrift.TException
+ public ByteBuffer recv_getMachineDescription() throws TAuthorizationException, TInvocationException, TNotFoundException, org.apache.thrift.TException
{
getMachineDescription_result result = new getMachineDescription_result();
receiveBase(result, "getMachineDescription");
@@ -450,7 +462,7 @@ public class SatelliteServer {
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getMachineDescription failed: unknown result");
}
- public void isAuthenticated(String userToken) throws TAuthorizationException, TInternalServerError, org.apache.thrift.TException
+ public void isAuthenticated(String userToken) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
send_isAuthenticated(userToken);
recv_isAuthenticated();
@@ -463,7 +475,7 @@ public class SatelliteServer {
sendBase("isAuthenticated", args);
}
- public void recv_isAuthenticated() throws TAuthorizationException, TInternalServerError, org.apache.thrift.TException
+ public void recv_isAuthenticated() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
isAuthenticated_result result = new isAuthenticated_result();
receiveBase(result, "isAuthenticated");
@@ -476,7 +488,7 @@ public class SatelliteServer {
return;
}
- public WhoamiInfo whoami(String userToken) throws TAuthorizationException, TInternalServerError, org.apache.thrift.TException
+ public WhoamiInfo whoami(String userToken) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
send_whoami(userToken);
return recv_whoami();
@@ -489,7 +501,7 @@ public class SatelliteServer {
sendBase("whoami", args);
}
- public WhoamiInfo recv_whoami() throws TAuthorizationException, TInternalServerError, org.apache.thrift.TException
+ public WhoamiInfo recv_whoami() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
whoami_result result = new whoami_result();
receiveBase(result, "whoami");
@@ -505,7 +517,7 @@ public class SatelliteServer {
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "whoami failed: unknown result");
}
- public void invalidateSession(String userToken) throws org.apache.thrift.TException
+ public void invalidateSession(String userToken) throws TInvalidTokenException, org.apache.thrift.TException
{
send_invalidateSession(userToken);
recv_invalidateSession();
@@ -518,14 +530,17 @@ public class SatelliteServer {
sendBase("invalidateSession", args);
}
- public void recv_invalidateSession() throws org.apache.thrift.TException
+ public void recv_invalidateSession() throws TInvalidTokenException, org.apache.thrift.TException
{
invalidateSession_result result = new invalidateSession_result();
receiveBase(result, "invalidateSession");
+ if (result.ex != null) {
+ throw result.ex;
+ }
return;
}
- public List<UserInfo> getUserList(String userToken, int page) throws TAuthorizationException, TInternalServerError, org.apache.thrift.TException
+ public List<UserInfo> getUserList(String userToken, int page) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
send_getUserList(userToken, page);
return recv_getUserList();
@@ -539,7 +554,7 @@ public class SatelliteServer {
sendBase("getUserList", args);
}
- public List<UserInfo> recv_getUserList() throws TAuthorizationException, TInternalServerError, org.apache.thrift.TException
+ public List<UserInfo> recv_getUserList() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
getUserList_result result = new getUserList_result();
receiveBase(result, "getUserList");
@@ -555,6 +570,62 @@ public class SatelliteServer {
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getUserList failed: unknown result");
}
+ public SatelliteUserConfig getUserConfig(String userToken) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
+ {
+ send_getUserConfig(userToken);
+ return recv_getUserConfig();
+ }
+
+ public void send_getUserConfig(String userToken) throws org.apache.thrift.TException
+ {
+ getUserConfig_args args = new getUserConfig_args();
+ args.setUserToken(userToken);
+ sendBase("getUserConfig", args);
+ }
+
+ public SatelliteUserConfig recv_getUserConfig() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
+ {
+ getUserConfig_result result = new getUserConfig_result();
+ receiveBase(result, "getUserConfig");
+ if (result.isSetSuccess()) {
+ return result.success;
+ }
+ if (result.failure != null) {
+ throw result.failure;
+ }
+ if (result.serverError != null) {
+ throw result.serverError;
+ }
+ throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getUserConfig failed: unknown result");
+ }
+
+ public void setUserConfig(String userToken, SatelliteUserConfig config) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
+ {
+ send_setUserConfig(userToken, config);
+ recv_setUserConfig();
+ }
+
+ public void send_setUserConfig(String userToken, SatelliteUserConfig config) throws org.apache.thrift.TException
+ {
+ setUserConfig_args args = new setUserConfig_args();
+ args.setUserToken(userToken);
+ args.setConfig(config);
+ sendBase("setUserConfig", args);
+ }
+
+ public void recv_setUserConfig() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
+ {
+ setUserConfig_result result = new setUserConfig_result();
+ receiveBase(result, "setUserConfig");
+ if (result.failure != null) {
+ throw result.failure;
+ }
+ if (result.serverError != null) {
+ throw result.serverError;
+ }
+ return;
+ }
+
public List<OperatingSystem> getOperatingSystems() throws org.apache.thrift.TException
{
send_getOperatingSystems();
@@ -621,7 +692,29 @@ public class SatelliteServer {
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getAllOrganizations failed: unknown result");
}
- public List<ImageSummaryRead> getImageList(String userToken, List<String> tagSearch, int page) throws TAuthorizationException, TInternalServerError, org.apache.thrift.TException
+ public SatelliteStatus getStatus() throws org.apache.thrift.TException
+ {
+ send_getStatus();
+ return recv_getStatus();
+ }
+
+ public void send_getStatus() throws org.apache.thrift.TException
+ {
+ getStatus_args args = new getStatus_args();
+ sendBase("getStatus", args);
+ }
+
+ public SatelliteStatus recv_getStatus() throws org.apache.thrift.TException
+ {
+ getStatus_result result = new getStatus_result();
+ receiveBase(result, "getStatus");
+ if (result.isSetSuccess()) {
+ return result.success;
+ }
+ throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getStatus failed: unknown result");
+ }
+
+ public List<ImageSummaryRead> getImageList(String userToken, List<String> tagSearch, int page) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
send_getImageList(userToken, tagSearch, page);
return recv_getImageList();
@@ -636,7 +729,7 @@ public class SatelliteServer {
sendBase("getImageList", args);
}
- public List<ImageSummaryRead> recv_getImageList() throws TAuthorizationException, TInternalServerError, org.apache.thrift.TException
+ public List<ImageSummaryRead> recv_getImageList() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
getImageList_result result = new getImageList_result();
receiveBase(result, "getImageList");
@@ -652,7 +745,7 @@ public class SatelliteServer {
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getImageList failed: unknown result");
}
- public ImageDetailsRead getImageDetails(String userToken, String imageBaseId) throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException
+ public ImageDetailsRead getImageDetails(String userToken, String imageBaseId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException
{
send_getImageDetails(userToken, imageBaseId);
return recv_getImageDetails();
@@ -666,7 +759,7 @@ public class SatelliteServer {
sendBase("getImageDetails", args);
}
- public ImageDetailsRead recv_getImageDetails() throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException
+ public ImageDetailsRead recv_getImageDetails() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException
{
getImageDetails_result result = new getImageDetails_result();
receiveBase(result, "getImageDetails");
@@ -685,7 +778,7 @@ public class SatelliteServer {
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getImageDetails failed: unknown result");
}
- public String createImage(String userToken, String imageName) throws TAuthorizationException, TImageDataException, TInternalServerError, org.apache.thrift.TException
+ public String createImage(String userToken, String imageName) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
send_createImage(userToken, imageName);
return recv_createImage();
@@ -699,7 +792,7 @@ public class SatelliteServer {
sendBase("createImage", args);
}
- public String recv_createImage() throws TAuthorizationException, TImageDataException, TInternalServerError, org.apache.thrift.TException
+ public String recv_createImage() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
createImage_result result = new createImage_result();
receiveBase(result, "createImage");
@@ -709,16 +802,13 @@ public class SatelliteServer {
if (result.authError != null) {
throw result.authError;
}
- if (result.imgError != null) {
- throw result.imgError;
- }
- if (result.serverError != null) {
- throw result.serverError;
+ if (result.error != null) {
+ throw result.error;
}
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "createImage failed: unknown result");
}
- public void updateImageBase(String userToken, String imageBaseId, ImageBaseWrite image) throws TAuthorizationException, TNotFoundException, TImageDataException, TInternalServerError, org.apache.thrift.TException
+ public void updateImageBase(String userToken, String imageBaseId, ImageBaseWrite image) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException
{
send_updateImageBase(userToken, imageBaseId, image);
recv_updateImageBase();
@@ -733,7 +823,7 @@ public class SatelliteServer {
sendBase("updateImageBase", args);
}
- public void recv_updateImageBase() throws TAuthorizationException, TNotFoundException, TImageDataException, TInternalServerError, org.apache.thrift.TException
+ public void recv_updateImageBase() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException
{
updateImageBase_result result = new updateImageBase_result();
receiveBase(result, "updateImageBase");
@@ -746,13 +836,10 @@ public class SatelliteServer {
if (result.imgError != null) {
throw result.imgError;
}
- if (result.serverError != null) {
- throw result.serverError;
- }
return;
}
- public void updateImageVersion(String userToken, String imageVersionId, ImageVersionWrite image) throws TAuthorizationException, TNotFoundException, TImageDataException, TInternalServerError, org.apache.thrift.TException
+ public void updateImageVersion(String userToken, String imageVersionId, ImageVersionWrite image) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException
{
send_updateImageVersion(userToken, imageVersionId, image);
recv_updateImageVersion();
@@ -767,7 +854,7 @@ public class SatelliteServer {
sendBase("updateImageVersion", args);
}
- public void recv_updateImageVersion() throws TAuthorizationException, TNotFoundException, TImageDataException, TInternalServerError, org.apache.thrift.TException
+ public void recv_updateImageVersion() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException
{
updateImageVersion_result result = new updateImageVersion_result();
receiveBase(result, "updateImageVersion");
@@ -780,13 +867,10 @@ public class SatelliteServer {
if (result.imgError != null) {
throw result.imgError;
}
- if (result.serverError != null) {
- throw result.serverError;
- }
return;
}
- public void deleteImageVersion(String userToken, String imageVersionId) throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException
+ public void deleteImageVersion(String userToken, String imageVersionId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException
{
send_deleteImageVersion(userToken, imageVersionId);
recv_deleteImageVersion();
@@ -800,7 +884,7 @@ public class SatelliteServer {
sendBase("deleteImageVersion", args);
}
- public void recv_deleteImageVersion() throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException
+ public void recv_deleteImageVersion() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException
{
deleteImageVersion_result result = new deleteImageVersion_result();
receiveBase(result, "deleteImageVersion");
@@ -816,7 +900,7 @@ public class SatelliteServer {
return;
}
- public void deleteImageBase(String userToken, String imageBaseId) throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException
+ public void deleteImageBase(String userToken, String imageBaseId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException
{
send_deleteImageBase(userToken, imageBaseId);
recv_deleteImageBase();
@@ -830,7 +914,7 @@ public class SatelliteServer {
sendBase("deleteImageBase", args);
}
- public void recv_deleteImageBase() throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException
+ public void recv_deleteImageBase() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException
{
deleteImageBase_result result = new deleteImageBase_result();
receiveBase(result, "deleteImageBase");
@@ -846,7 +930,7 @@ public class SatelliteServer {
return;
}
- public void writeImagePermissions(String userToken, String imageBaseId, Map<String,ImagePermissions> permissions) throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException
+ public void writeImagePermissions(String userToken, String imageBaseId, Map<String,ImagePermissions> permissions) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException
{
send_writeImagePermissions(userToken, imageBaseId, permissions);
recv_writeImagePermissions();
@@ -861,7 +945,7 @@ public class SatelliteServer {
sendBase("writeImagePermissions", args);
}
- public void recv_writeImagePermissions() throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException
+ public void recv_writeImagePermissions() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException
{
writeImagePermissions_result result = new writeImagePermissions_result();
receiveBase(result, "writeImagePermissions");
@@ -877,7 +961,7 @@ public class SatelliteServer {
return;
}
- public Map<String,ImagePermissions> getImagePermissions(String userToken, String imageBaseId) throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException
+ public Map<String,ImagePermissions> getImagePermissions(String userToken, String imageBaseId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException
{
send_getImagePermissions(userToken, imageBaseId);
return recv_getImagePermissions();
@@ -891,7 +975,7 @@ public class SatelliteServer {
sendBase("getImagePermissions", args);
}
- public Map<String,ImagePermissions> recv_getImagePermissions() throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException
+ public Map<String,ImagePermissions> recv_getImagePermissions() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException
{
getImagePermissions_result result = new getImagePermissions_result();
receiveBase(result, "getImagePermissions");
@@ -910,7 +994,7 @@ public class SatelliteServer {
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getImagePermissions failed: unknown result");
}
- public void setImageOwner(String userToken, String imageBaseId, String newOwnerId) throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException
+ public void setImageOwner(String userToken, String imageBaseId, String newOwnerId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException
{
send_setImageOwner(userToken, imageBaseId, newOwnerId);
recv_setImageOwner();
@@ -925,7 +1009,7 @@ public class SatelliteServer {
sendBase("setImageOwner", args);
}
- public void recv_setImageOwner() throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException
+ public void recv_setImageOwner() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException
{
setImageOwner_result result = new setImageOwner_result();
receiveBase(result, "setImageOwner");
@@ -941,7 +1025,7 @@ public class SatelliteServer {
return;
}
- public void setImageVersionExpiry(String userToken, String imageBaseId, long expireTime) throws TAuthorizationException, TNotFoundException, TInternalServerError, TInvalidDateParam, org.apache.thrift.TException
+ public void setImageVersionExpiry(String userToken, String imageBaseId, long expireTime) throws TAuthorizationException, TNotFoundException, TInvocationException, TInvalidDateParam, org.apache.thrift.TException
{
send_setImageVersionExpiry(userToken, imageBaseId, expireTime);
recv_setImageVersionExpiry();
@@ -956,7 +1040,7 @@ public class SatelliteServer {
sendBase("setImageVersionExpiry", args);
}
- public void recv_setImageVersionExpiry() throws TAuthorizationException, TNotFoundException, TInternalServerError, TInvalidDateParam, org.apache.thrift.TException
+ public void recv_setImageVersionExpiry() throws TAuthorizationException, TNotFoundException, TInvocationException, TInvalidDateParam, org.apache.thrift.TException
{
setImageVersionExpiry_result result = new setImageVersionExpiry_result();
receiveBase(result, "setImageVersionExpiry");
@@ -975,7 +1059,7 @@ public class SatelliteServer {
return;
}
- public String createLecture(String userToken, LectureWrite lecture) throws TAuthorizationException, TInternalServerError, TInvalidDateParam, org.apache.thrift.TException
+ public String createLecture(String userToken, LectureWrite lecture) throws TAuthorizationException, TInvocationException, TInvalidDateParam, org.apache.thrift.TException
{
send_createLecture(userToken, lecture);
return recv_createLecture();
@@ -989,7 +1073,7 @@ public class SatelliteServer {
sendBase("createLecture", args);
}
- public String recv_createLecture() throws TAuthorizationException, TInternalServerError, TInvalidDateParam, org.apache.thrift.TException
+ public String recv_createLecture() throws TAuthorizationException, TInvocationException, TInvalidDateParam, org.apache.thrift.TException
{
createLecture_result result = new createLecture_result();
receiveBase(result, "createLecture");
@@ -1008,7 +1092,7 @@ public class SatelliteServer {
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "createLecture failed: unknown result");
}
- public void updateLecture(String userToken, String lectureId, LectureWrite lecture) throws TAuthorizationException, TNotFoundException, TInternalServerError, TInvalidDateParam, org.apache.thrift.TException
+ public void updateLecture(String userToken, String lectureId, LectureWrite lecture) throws TAuthorizationException, TNotFoundException, TInvocationException, TInvalidDateParam, org.apache.thrift.TException
{
send_updateLecture(userToken, lectureId, lecture);
recv_updateLecture();
@@ -1023,7 +1107,7 @@ public class SatelliteServer {
sendBase("updateLecture", args);
}
- public void recv_updateLecture() throws TAuthorizationException, TNotFoundException, TInternalServerError, TInvalidDateParam, org.apache.thrift.TException
+ public void recv_updateLecture() throws TAuthorizationException, TNotFoundException, TInvocationException, TInvalidDateParam, org.apache.thrift.TException
{
updateLecture_result result = new updateLecture_result();
receiveBase(result, "updateLecture");
@@ -1042,7 +1126,7 @@ public class SatelliteServer {
return;
}
- public List<LectureSummary> getLectureList(String userToken, int page) throws TAuthorizationException, TInternalServerError, org.apache.thrift.TException
+ public List<LectureSummary> getLectureList(String userToken, int page) throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
send_getLectureList(userToken, page);
return recv_getLectureList();
@@ -1056,7 +1140,7 @@ public class SatelliteServer {
sendBase("getLectureList", args);
}
- public List<LectureSummary> recv_getLectureList() throws TAuthorizationException, TInternalServerError, org.apache.thrift.TException
+ public List<LectureSummary> recv_getLectureList() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException
{
getLectureList_result result = new getLectureList_result();
receiveBase(result, "getLectureList");
@@ -1072,7 +1156,7 @@ public class SatelliteServer {
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getLectureList failed: unknown result");
}
- public LectureRead getLectureDetails(String userToken, String lectureId) throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException
+ public LectureRead getLectureDetails(String userToken, String lectureId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException
{
send_getLectureDetails(userToken, lectureId);
return recv_getLectureDetails();
@@ -1086,7 +1170,7 @@ public class SatelliteServer {
sendBase("getLectureDetails", args);
}
- public LectureRead recv_getLectureDetails() throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException
+ public LectureRead recv_getLectureDetails() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException
{
getLectureDetails_result result = new getLectureDetails_result();
receiveBase(result, "getLectureDetails");
@@ -1105,7 +1189,7 @@ public class SatelliteServer {
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getLectureDetails failed: unknown result");
}
- public void deleteLecture(String userToken, String lectureId) throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException
+ public void deleteLecture(String userToken, String lectureId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException
{
send_deleteLecture(userToken, lectureId);
recv_deleteLecture();
@@ -1119,7 +1203,7 @@ public class SatelliteServer {
sendBase("deleteLecture", args);
}
- public void recv_deleteLecture() throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException
+ public void recv_deleteLecture() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException
{
deleteLecture_result result = new deleteLecture_result();
receiveBase(result, "deleteLecture");
@@ -1135,7 +1219,7 @@ public class SatelliteServer {
return;
}
- public void writeLecturePermissions(String userToken, String lectureId, Map<String,LecturePermissions> permissions) throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException
+ public void writeLecturePermissions(String userToken, String lectureId, Map<String,LecturePermissions> permissions) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException
{
send_writeLecturePermissions(userToken, lectureId, permissions);
recv_writeLecturePermissions();
@@ -1150,7 +1234,7 @@ public class SatelliteServer {
sendBase("writeLecturePermissions", args);
}
- public void recv_writeLecturePermissions() throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException
+ public void recv_writeLecturePermissions() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException
{
writeLecturePermissions_result result = new writeLecturePermissions_result();
receiveBase(result, "writeLecturePermissions");
@@ -1166,7 +1250,7 @@ public class SatelliteServer {
return;
}
- public Map<String,LecturePermissions> getLecturePermissions(String userToken, String lectureId) throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException
+ public Map<String,LecturePermissions> getLecturePermissions(String userToken, String lectureId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException
{
send_getLecturePermissions(userToken, lectureId);
return recv_getLecturePermissions();
@@ -1180,7 +1264,7 @@ public class SatelliteServer {
sendBase("getLecturePermissions", args);
}
- public Map<String,LecturePermissions> recv_getLecturePermissions() throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException
+ public Map<String,LecturePermissions> recv_getLecturePermissions() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException
{
getLecturePermissions_result result = new getLecturePermissions_result();
receiveBase(result, "getLecturePermissions");
@@ -1199,7 +1283,7 @@ public class SatelliteServer {
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getLecturePermissions failed: unknown result");
}
- public void setLectureOwner(String userToken, String lectureId, String newOwnerId) throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException
+ public void setLectureOwner(String userToken, String lectureId, String newOwnerId) throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException
{
send_setLectureOwner(userToken, lectureId, newOwnerId);
recv_setLectureOwner();
@@ -1214,7 +1298,7 @@ public class SatelliteServer {
sendBase("setLectureOwner", args);
}
- public void recv_setLectureOwner() throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException
+ public void recv_setLectureOwner() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException
{
setLectureOwner_result result = new setLectureOwner_result();
receiveBase(result, "setLectureOwner");
@@ -1340,7 +1424,7 @@ public class SatelliteServer {
prot.writeMessageEnd();
}
- public TransferInformation getResult() throws TTransferRejectedException, TAuthorizationException, TInternalServerError, TNotFoundException, org.apache.thrift.TException {
+ public TransferInformation getResult() throws TTransferRejectedException, TAuthorizationException, TInvocationException, TNotFoundException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -1474,7 +1558,7 @@ public class SatelliteServer {
prot.writeMessageEnd();
}
- public TransferInformation getResult() throws TTransferRejectedException, TAuthorizationException, TInternalServerError, TNotFoundException, org.apache.thrift.TException {
+ public TransferInformation getResult() throws TTransferRejectedException, TAuthorizationException, TInvocationException, TNotFoundException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -1541,7 +1625,7 @@ public class SatelliteServer {
prot.writeMessageEnd();
}
- public ByteBuffer getResult() throws TAuthorizationException, TInternalServerError, TNotFoundException, org.apache.thrift.TException {
+ public ByteBuffer getResult() throws TAuthorizationException, TInvocationException, TNotFoundException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -1573,7 +1657,7 @@ public class SatelliteServer {
prot.writeMessageEnd();
}
- public void getResult() throws TAuthorizationException, TInternalServerError, org.apache.thrift.TException {
+ public void getResult() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -1605,7 +1689,7 @@ public class SatelliteServer {
prot.writeMessageEnd();
}
- public WhoamiInfo getResult() throws TAuthorizationException, TInternalServerError, org.apache.thrift.TException {
+ public WhoamiInfo getResult() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -1637,7 +1721,7 @@ public class SatelliteServer {
prot.writeMessageEnd();
}
- public void getResult() throws org.apache.thrift.TException {
+ public void getResult() throws TInvalidTokenException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -1672,7 +1756,7 @@ public class SatelliteServer {
prot.writeMessageEnd();
}
- public List<UserInfo> getResult() throws TAuthorizationException, TInternalServerError, org.apache.thrift.TException {
+ public List<UserInfo> getResult() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -1682,6 +1766,73 @@ public class SatelliteServer {
}
}
+ public void getUserConfig(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);
+ this.___currentMethod = method_call;
+ ___manager.call(method_call);
+ }
+
+ public static class getUserConfig_call extends org.apache.thrift.async.TAsyncMethodCall {
+ private String userToken;
+ public getUserConfig_call(String userToken, org.apache.thrift.async.AsyncMethodCallback resultHandler, org.apache.thrift.async.TAsyncClient client, org.apache.thrift.protocol.TProtocolFactory protocolFactory, org.apache.thrift.transport.TNonblockingTransport transport) throws org.apache.thrift.TException {
+ super(client, protocolFactory, transport, resultHandler, false);
+ this.userToken = userToken;
+ }
+
+ 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();
+ args.setUserToken(userToken);
+ args.write(prot);
+ prot.writeMessageEnd();
+ }
+
+ public SatelliteUserConfig getResult() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException {
+ if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
+ throw new 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);
+ return (new Client(prot)).recv_getUserConfig();
+ }
+ }
+
+ public void setUserConfig(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);
+ this.___currentMethod = method_call;
+ ___manager.call(method_call);
+ }
+
+ public static class setUserConfig_call extends org.apache.thrift.async.TAsyncMethodCall {
+ private String userToken;
+ private SatelliteUserConfig config;
+ public setUserConfig_call(String userToken, SatelliteUserConfig config, org.apache.thrift.async.AsyncMethodCallback resultHandler, org.apache.thrift.async.TAsyncClient client, org.apache.thrift.protocol.TProtocolFactory protocolFactory, org.apache.thrift.transport.TNonblockingTransport transport) throws org.apache.thrift.TException {
+ super(client, protocolFactory, transport, resultHandler, false);
+ this.userToken = userToken;
+ this.config = config;
+ }
+
+ 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();
+ args.setUserToken(userToken);
+ args.setConfig(config);
+ args.write(prot);
+ prot.writeMessageEnd();
+ }
+
+ public void getResult() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException {
+ if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
+ throw new 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();
+ }
+ }
+
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);
@@ -1769,6 +1920,35 @@ public class SatelliteServer {
}
}
+ 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);
+ this.___currentMethod = method_call;
+ ___manager.call(method_call);
+ }
+
+ public static class getStatus_call extends org.apache.thrift.async.TAsyncMethodCall {
+ public getStatus_call(org.apache.thrift.async.AsyncMethodCallback resultHandler, org.apache.thrift.async.TAsyncClient client, org.apache.thrift.protocol.TProtocolFactory protocolFactory, org.apache.thrift.transport.TNonblockingTransport transport) throws org.apache.thrift.TException {
+ super(client, protocolFactory, transport, resultHandler, false);
+ }
+
+ 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();
+ args.write(prot);
+ prot.writeMessageEnd();
+ }
+
+ public SatelliteStatus getResult() throws org.apache.thrift.TException {
+ if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
+ throw new 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);
+ return (new Client(prot)).recv_getStatus();
+ }
+ }
+
public void getImageList(String userToken, List<String> 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);
@@ -1797,7 +1977,7 @@ public class SatelliteServer {
prot.writeMessageEnd();
}
- public List<ImageSummaryRead> getResult() throws TAuthorizationException, TInternalServerError, org.apache.thrift.TException {
+ public List<ImageSummaryRead> getResult() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -1832,7 +2012,7 @@ public class SatelliteServer {
prot.writeMessageEnd();
}
- public ImageDetailsRead getResult() throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException {
+ public ImageDetailsRead getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -1867,7 +2047,7 @@ public class SatelliteServer {
prot.writeMessageEnd();
}
- public String getResult() throws TAuthorizationException, TImageDataException, TInternalServerError, org.apache.thrift.TException {
+ public String getResult() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -1905,7 +2085,7 @@ public class SatelliteServer {
prot.writeMessageEnd();
}
- public void getResult() throws TAuthorizationException, TNotFoundException, TImageDataException, TInternalServerError, org.apache.thrift.TException {
+ public void getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -1943,7 +2123,7 @@ public class SatelliteServer {
prot.writeMessageEnd();
}
- public void getResult() throws TAuthorizationException, TNotFoundException, TImageDataException, TInternalServerError, org.apache.thrift.TException {
+ public void getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -1978,7 +2158,7 @@ public class SatelliteServer {
prot.writeMessageEnd();
}
- public void getResult() throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException {
+ public void getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -2013,7 +2193,7 @@ public class SatelliteServer {
prot.writeMessageEnd();
}
- public void getResult() throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException {
+ public void getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -2051,7 +2231,7 @@ public class SatelliteServer {
prot.writeMessageEnd();
}
- public void getResult() throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException {
+ public void getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -2086,7 +2266,7 @@ public class SatelliteServer {
prot.writeMessageEnd();
}
- public Map<String,ImagePermissions> getResult() throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException {
+ public Map<String,ImagePermissions> getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -2124,7 +2304,7 @@ public class SatelliteServer {
prot.writeMessageEnd();
}
- public void getResult() throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException {
+ public void getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -2162,7 +2342,7 @@ public class SatelliteServer {
prot.writeMessageEnd();
}
- public void getResult() throws TAuthorizationException, TNotFoundException, TInternalServerError, TInvalidDateParam, org.apache.thrift.TException {
+ public void getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, TInvalidDateParam, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -2197,7 +2377,7 @@ public class SatelliteServer {
prot.writeMessageEnd();
}
- public String getResult() throws TAuthorizationException, TInternalServerError, TInvalidDateParam, org.apache.thrift.TException {
+ public String getResult() throws TAuthorizationException, TInvocationException, TInvalidDateParam, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -2235,7 +2415,7 @@ public class SatelliteServer {
prot.writeMessageEnd();
}
- public void getResult() throws TAuthorizationException, TNotFoundException, TInternalServerError, TInvalidDateParam, org.apache.thrift.TException {
+ public void getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, TInvalidDateParam, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -2270,7 +2450,7 @@ public class SatelliteServer {
prot.writeMessageEnd();
}
- public List<LectureSummary> getResult() throws TAuthorizationException, TInternalServerError, org.apache.thrift.TException {
+ public List<LectureSummary> getResult() throws TAuthorizationException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -2305,7 +2485,7 @@ public class SatelliteServer {
prot.writeMessageEnd();
}
- public LectureRead getResult() throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException {
+ public LectureRead getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -2340,7 +2520,7 @@ public class SatelliteServer {
prot.writeMessageEnd();
}
- public void getResult() throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException {
+ public void getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -2378,7 +2558,7 @@ public class SatelliteServer {
prot.writeMessageEnd();
}
- public void getResult() throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException {
+ public void getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -2413,7 +2593,7 @@ public class SatelliteServer {
prot.writeMessageEnd();
}
- public Map<String,LecturePermissions> getResult() throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException {
+ public Map<String,LecturePermissions> getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -2451,7 +2631,7 @@ public class SatelliteServer {
prot.writeMessageEnd();
}
- public void getResult() throws TAuthorizationException, TNotFoundException, TInternalServerError, org.apache.thrift.TException {
+ public void getResult() throws TAuthorizationException, TNotFoundException, TInvocationException, org.apache.thrift.TException {
if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
@@ -2487,9 +2667,12 @@ public class SatelliteServer {
processMap.put("whoami", new whoami());
processMap.put("invalidateSession", new invalidateSession());
processMap.put("getUserList", new getUserList());
+ processMap.put("getUserConfig", new getUserConfig());
+ processMap.put("setUserConfig", new setUserConfig());
processMap.put("getOperatingSystems", new getOperatingSystems());
processMap.put("getVirtualizers", new getVirtualizers());
processMap.put("getAllOrganizations", new getAllOrganizations());
+ processMap.put("getStatus", new getStatus());
processMap.put("getImageList", new getImageList());
processMap.put("getImageDetails", new getImageDetails());
processMap.put("createImage", new createImage());
@@ -2574,7 +2757,7 @@ public class SatelliteServer {
result.rejection = rejection;
} catch (TAuthorizationException authError) {
result.authError = authError;
- } catch (TInternalServerError ffff) {
+ } catch (TInvocationException ffff) {
result.ffff = ffff;
} catch (TNotFoundException sdf) {
result.sdf = sdf;
@@ -2676,7 +2859,7 @@ public class SatelliteServer {
result.rejection = rejection;
} catch (TAuthorizationException authError) {
result.authError = authError;
- } catch (TInternalServerError ffff) {
+ } catch (TInvocationException ffff) {
result.ffff = ffff;
} catch (TNotFoundException sdf) {
result.sdf = sdf;
@@ -2728,7 +2911,7 @@ public class SatelliteServer {
result.success = iface.getMachineDescription(args.userToken, args.imageVersionId);
} catch (TAuthorizationException authError) {
result.authError = authError;
- } catch (TInternalServerError ffff) {
+ } catch (TInvocationException ffff) {
result.ffff = ffff;
} catch (TNotFoundException sdf) {
result.sdf = sdf;
@@ -2756,7 +2939,7 @@ public class SatelliteServer {
iface.isAuthenticated(args.userToken);
} catch (TAuthorizationException authError) {
result.authError = authError;
- } catch (TInternalServerError serverError) {
+ } catch (TInvocationException serverError) {
result.serverError = serverError;
}
return result;
@@ -2782,7 +2965,7 @@ public class SatelliteServer {
result.success = iface.whoami(args.userToken);
} catch (TAuthorizationException authError) {
result.authError = authError;
- } catch (TInternalServerError serverError) {
+ } catch (TInvocationException serverError) {
result.serverError = serverError;
}
return result;
@@ -2804,7 +2987,11 @@ public class SatelliteServer {
public invalidateSession_result getResult(I iface, invalidateSession_args args) throws org.apache.thrift.TException {
invalidateSession_result result = new invalidateSession_result();
- iface.invalidateSession(args.userToken);
+ try {
+ iface.invalidateSession(args.userToken);
+ } catch (TInvalidTokenException ex) {
+ result.ex = ex;
+ }
return result;
}
}
@@ -2828,7 +3015,59 @@ public class SatelliteServer {
result.success = iface.getUserList(args.userToken, args.page);
} catch (TAuthorizationException failure) {
result.failure = failure;
- } catch (TInternalServerError serverError) {
+ } catch (TInvocationException serverError) {
+ result.serverError = serverError;
+ }
+ return result;
+ }
+ }
+
+ public static class getUserConfig<I extends Iface> extends org.apache.thrift.ProcessFunction<I, getUserConfig_args> {
+ public getUserConfig() {
+ super("getUserConfig");
+ }
+
+ public getUserConfig_args getEmptyArgsInstance() {
+ return new getUserConfig_args();
+ }
+
+ protected boolean isOneway() {
+ return false;
+ }
+
+ public getUserConfig_result getResult(I iface, getUserConfig_args args) throws org.apache.thrift.TException {
+ getUserConfig_result result = new getUserConfig_result();
+ try {
+ result.success = iface.getUserConfig(args.userToken);
+ } catch (TAuthorizationException failure) {
+ result.failure = failure;
+ } catch (TInvocationException serverError) {
+ result.serverError = serverError;
+ }
+ return result;
+ }
+ }
+
+ public static class setUserConfig<I extends Iface> extends org.apache.thrift.ProcessFunction<I, setUserConfig_args> {
+ public setUserConfig() {
+ super("setUserConfig");
+ }
+
+ public setUserConfig_args getEmptyArgsInstance() {
+ return new setUserConfig_args();
+ }
+
+ protected boolean isOneway() {
+ return false;
+ }
+
+ public setUserConfig_result getResult(I iface, setUserConfig_args args) throws org.apache.thrift.TException {
+ setUserConfig_result result = new setUserConfig_result();
+ try {
+ iface.setUserConfig(args.userToken, args.config);
+ } catch (TAuthorizationException failure) {
+ result.failure = failure;
+ } catch (TInvocationException serverError) {
result.serverError = serverError;
}
return result;
@@ -2895,6 +3134,26 @@ public class SatelliteServer {
}
}
+ public static class getStatus<I extends Iface> extends org.apache.thrift.ProcessFunction<I, getStatus_args> {
+ public getStatus() {
+ super("getStatus");
+ }
+
+ public getStatus_args getEmptyArgsInstance() {
+ return new getStatus_args();
+ }
+
+ protected boolean isOneway() {
+ return false;
+ }
+
+ public getStatus_result getResult(I iface, getStatus_args args) throws org.apache.thrift.TException {
+ getStatus_result result = new getStatus_result();
+ result.success = iface.getStatus();
+ return result;
+ }
+ }
+
public static class getImageList<I extends Iface> extends org.apache.thrift.ProcessFunction<I, getImageList_args> {
public getImageList() {
super("getImageList");
@@ -2914,7 +3173,7 @@ public class SatelliteServer {
result.success = iface.getImageList(args.userToken, args.tagSearch, args.page);
} catch (TAuthorizationException authError) {
result.authError = authError;
- } catch (TInternalServerError serverError) {
+ } catch (TInvocationException serverError) {
result.serverError = serverError;
}
return result;
@@ -2942,7 +3201,7 @@ public class SatelliteServer {
result.authError = authError;
} catch (TNotFoundException notFound) {
result.notFound = notFound;
- } catch (TInternalServerError serverError) {
+ } catch (TInvocationException serverError) {
result.serverError = serverError;
}
return result;
@@ -2968,10 +3227,8 @@ public class SatelliteServer {
result.success = iface.createImage(args.userToken, args.imageName);
} catch (TAuthorizationException authError) {
result.authError = authError;
- } catch (TImageDataException imgError) {
- result.imgError = imgError;
- } catch (TInternalServerError serverError) {
- result.serverError = serverError;
+ } catch (TInvocationException error) {
+ result.error = error;
}
return result;
}
@@ -2998,10 +3255,8 @@ public class SatelliteServer {
result.authError = authError;
} catch (TNotFoundException notFound) {
result.notFound = notFound;
- } catch (TImageDataException imgError) {
+ } catch (TInvocationException imgError) {
result.imgError = imgError;
- } catch (TInternalServerError serverError) {
- result.serverError = serverError;
}
return result;
}
@@ -3028,10 +3283,8 @@ public class SatelliteServer {
result.authError = authError;
} catch (TNotFoundException notFound) {
result.notFound = notFound;
- } catch (TImageDataException imgError) {
+ } catch (TInvocationException imgError) {
result.imgError = imgError;
- } catch (TInternalServerError serverError) {
- result.serverError = serverError;
}
return result;
}
@@ -3058,7 +3311,7 @@ public class SatelliteServer {
result.authError = authError;
} catch (TNotFoundException notFound) {
result.notFound = notFound;
- } catch (TInternalServerError serverError) {
+ } catch (TInvocationException serverError) {
result.serverError = serverError;
}
return result;
@@ -3086,7 +3339,7 @@ public class SatelliteServer {
result.authError = authError;
} catch (TNotFoundException notFound) {
result.notFound = notFound;
- } catch (TInternalServerError serverError) {
+ } catch (TInvocationException serverError) {
result.serverError = serverError;
}
return result;
@@ -3114,7 +3367,7 @@ public class SatelliteServer {
result.authError = authError;
} catch (TNotFoundException notFound) {
result.notFound = notFound;
- } catch (TInternalServerError serverError) {
+ } catch (TInvocationException serverError) {
result.serverError = serverError;
}
return result;
@@ -3142,7 +3395,7 @@ public class SatelliteServer {
result.authError = authError;
} catch (TNotFoundException notFound) {
result.notFound = notFound;
- } catch (TInternalServerError serverError) {
+ } catch (TInvocationException serverError) {
result.serverError = serverError;
}
return result;
@@ -3170,7 +3423,7 @@ public class SatelliteServer {
result.authError = authError;
} catch (TNotFoundException notFound) {
result.notFound = notFound;
- } catch (TInternalServerError serverError) {
+ } catch (TInvocationException serverError) {
result.serverError = serverError;
}
return result;
@@ -3198,7 +3451,7 @@ public class SatelliteServer {
result.authError = authError;
} catch (TNotFoundException notFound) {
result.notFound = notFound;
- } catch (TInternalServerError serverError) {
+ } catch (TInvocationException serverError) {
result.serverError = serverError;
} catch (TInvalidDateParam dateError) {
result.dateError = dateError;
@@ -3226,7 +3479,7 @@ public class SatelliteServer {
result.success = iface.createLecture(args.userToken, args.lecture);
} catch (TAuthorizationException authError) {
result.authError = authError;
- } catch (TInternalServerError serverError) {
+ } catch (TInvocationException serverError) {
result.serverError = serverError;
} catch (TInvalidDateParam dateError) {
result.dateError = dateError;
@@ -3256,7 +3509,7 @@ public class SatelliteServer {
result.authError = authError;
} catch (TNotFoundException notFound) {
result.notFound = notFound;
- } catch (TInternalServerError serverError) {
+ } catch (TInvocationException serverError) {
result.serverError = serverError;
} catch (TInvalidDateParam dateError) {
result.dateError = dateError;
@@ -3284,7 +3537,7 @@ public class SatelliteServer {
result.success = iface.getLectureList(args.userToken, args.page);
} catch (TAuthorizationException authError) {
result.authError = authError;
- } catch (TInternalServerError serverError) {
+ } catch (TInvocationException serverError) {
result.serverError = serverError;
}
return result;
@@ -3312,7 +3565,7 @@ public class SatelliteServer {
result.authError = authError;
} catch (TNotFoundException notFound) {
result.notFound = notFound;
- } catch (TInternalServerError serverError) {
+ } catch (TInvocationException serverError) {
result.serverError = serverError;
}
return result;
@@ -3340,7 +3593,7 @@ public class SatelliteServer {
result.authError = authError;
} catch (TNotFoundException notFound) {
result.notFound = notFound;
- } catch (TInternalServerError serverError) {
+ } catch (TInvocationException serverError) {
result.serverError = serverError;
}
return result;
@@ -3368,7 +3621,7 @@ public class SatelliteServer {
result.authError = authError;
} catch (TNotFoundException notFound) {
result.notFound = notFound;
- } catch (TInternalServerError serverError) {
+ } catch (TInvocationException serverError) {
result.serverError = serverError;
}
return result;
@@ -3396,7 +3649,7 @@ public class SatelliteServer {
result.authError = authError;
} catch (TNotFoundException notFound) {
result.notFound = notFound;
- } catch (TInternalServerError serverError) {
+ } catch (TInvocationException serverError) {
result.serverError = serverError;
}
return result;
@@ -3424,7 +3677,7 @@ public class SatelliteServer {
result.authError = authError;
} catch (TNotFoundException notFound) {
result.notFound = notFound;
- } catch (TInternalServerError serverError) {
+ } catch (TInvocationException serverError) {
result.serverError = serverError;
}
return result;
@@ -3457,9 +3710,12 @@ public class SatelliteServer {
processMap.put("whoami", new whoami());
processMap.put("invalidateSession", new invalidateSession());
processMap.put("getUserList", new getUserList());
+ processMap.put("getUserConfig", new getUserConfig());
+ processMap.put("setUserConfig", new setUserConfig());
processMap.put("getOperatingSystems", new getOperatingSystems());
processMap.put("getVirtualizers", new getVirtualizers());
processMap.put("getAllOrganizations", new getAllOrganizations());
+ processMap.put("getStatus", new getStatus());
processMap.put("getImageList", new getImageList());
processMap.put("getImageDetails", new getImageDetails());
processMap.put("createImage", new createImage());
@@ -3622,8 +3878,8 @@ public class SatelliteServer {
result.setAuthErrorIsSet(true);
msg = result;
}
- else if (e instanceof TInternalServerError) {
- result.ffff = (TInternalServerError) e;
+ else if (e instanceof TInvocationException) {
+ result.ffff = (TInvocationException) e;
result.setFfffIsSet(true);
msg = result;
}
@@ -3863,8 +4119,8 @@ public class SatelliteServer {
result.setAuthErrorIsSet(true);
msg = result;
}
- else if (e instanceof TInternalServerError) {
- result.ffff = (TInternalServerError) e;
+ else if (e instanceof TInvocationException) {
+ result.ffff = (TInvocationException) e;
result.setFfffIsSet(true);
msg = result;
}
@@ -3986,8 +4242,8 @@ public class SatelliteServer {
result.setAuthErrorIsSet(true);
msg = result;
}
- else if (e instanceof TInternalServerError) {
- result.ffff = (TInternalServerError) e;
+ else if (e instanceof TInvocationException) {
+ result.ffff = (TInvocationException) e;
result.setFfffIsSet(true);
msg = result;
}
@@ -4052,8 +4308,8 @@ public class SatelliteServer {
result.setAuthErrorIsSet(true);
msg = result;
}
- else if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
+ else if (e instanceof TInvocationException) {
+ result.serverError = (TInvocationException) e;
result.setServerErrorIsSet(true);
msg = result;
}
@@ -4114,8 +4370,8 @@ public class SatelliteServer {
result.setAuthErrorIsSet(true);
msg = result;
}
- else if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
+ else if (e instanceof TInvocationException) {
+ result.serverError = (TInvocationException) e;
result.setServerErrorIsSet(true);
msg = result;
}
@@ -4170,6 +4426,12 @@ public class SatelliteServer {
byte msgType = org.apache.thrift.protocol.TMessageType.REPLY;
org.apache.thrift.TBase msg;
invalidateSession_result result = new invalidateSession_result();
+ if (e instanceof TInvalidTokenException) {
+ result.ex = (TInvalidTokenException) e;
+ result.setExIsSet(true);
+ msg = result;
+ }
+ else
{
msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION;
msg = (org.apache.thrift.TBase)new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage());
@@ -4226,8 +4488,8 @@ public class SatelliteServer {
result.setFailureIsSet(true);
msg = result;
}
- else if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
+ else if (e instanceof TInvocationException) {
+ result.serverError = (TInvocationException) e;
result.setServerErrorIsSet(true);
msg = result;
}
@@ -4256,6 +4518,129 @@ public class SatelliteServer {
}
}
+ public static class getUserConfig<I extends AsyncIface> extends org.apache.thrift.AsyncProcessFunction<I, getUserConfig_args, SatelliteUserConfig> {
+ public getUserConfig() {
+ super("getUserConfig");
+ }
+
+ public getUserConfig_args getEmptyArgsInstance() {
+ return new getUserConfig_args();
+ }
+
+ public AsyncMethodCallback<SatelliteUserConfig> getResultHandler(final AsyncFrameBuffer fb, final int seqid) {
+ final org.apache.thrift.AsyncProcessFunction fcall = this;
+ return new AsyncMethodCallback<SatelliteUserConfig>() {
+ public void onComplete(SatelliteUserConfig o) {
+ getUserConfig_result result = new getUserConfig_result();
+ result.success = o;
+ try {
+ fcall.sendResponse(fb,result, org.apache.thrift.protocol.TMessageType.REPLY,seqid);
+ return;
+ } catch (Exception e) {
+ LOGGER.error("Exception writing to internal frame buffer", e);
+ }
+ fb.close();
+ }
+ public void onError(Exception e) {
+ byte msgType = org.apache.thrift.protocol.TMessageType.REPLY;
+ org.apache.thrift.TBase msg;
+ getUserConfig_result result = new getUserConfig_result();
+ if (e instanceof TAuthorizationException) {
+ result.failure = (TAuthorizationException) e;
+ result.setFailureIsSet(true);
+ msg = result;
+ }
+ else if (e instanceof TInvocationException) {
+ result.serverError = (TInvocationException) e;
+ result.setServerErrorIsSet(true);
+ msg = result;
+ }
+ else
+ {
+ msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION;
+ msg = (org.apache.thrift.TBase)new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage());
+ }
+ try {
+ fcall.sendResponse(fb,msg,msgType,seqid);
+ return;
+ } catch (Exception ex) {
+ LOGGER.error("Exception writing to internal frame buffer", ex);
+ }
+ fb.close();
+ }
+ };
+ }
+
+ protected boolean isOneway() {
+ return false;
+ }
+
+ public void start(I iface, getUserConfig_args args, org.apache.thrift.async.AsyncMethodCallback<SatelliteUserConfig> resultHandler) throws TException {
+ iface.getUserConfig(args.userToken,resultHandler);
+ }
+ }
+
+ public static class setUserConfig<I extends AsyncIface> extends org.apache.thrift.AsyncProcessFunction<I, setUserConfig_args, Void> {
+ public setUserConfig() {
+ super("setUserConfig");
+ }
+
+ public setUserConfig_args getEmptyArgsInstance() {
+ return new setUserConfig_args();
+ }
+
+ public AsyncMethodCallback<Void> getResultHandler(final AsyncFrameBuffer fb, final int seqid) {
+ final org.apache.thrift.AsyncProcessFunction fcall = this;
+ return new AsyncMethodCallback<Void>() {
+ public void onComplete(Void o) {
+ setUserConfig_result result = new setUserConfig_result();
+ try {
+ fcall.sendResponse(fb,result, org.apache.thrift.protocol.TMessageType.REPLY,seqid);
+ return;
+ } catch (Exception e) {
+ LOGGER.error("Exception writing to internal frame buffer", e);
+ }
+ fb.close();
+ }
+ public void onError(Exception e) {
+ byte msgType = org.apache.thrift.protocol.TMessageType.REPLY;
+ org.apache.thrift.TBase msg;
+ setUserConfig_result result = new setUserConfig_result();
+ if (e instanceof TAuthorizationException) {
+ result.failure = (TAuthorizationException) e;
+ result.setFailureIsSet(true);
+ msg = result;
+ }
+ else if (e instanceof TInvocationException) {
+ result.serverError = (TInvocationException) e;
+ result.setServerErrorIsSet(true);
+ msg = result;
+ }
+ else
+ {
+ msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION;
+ msg = (org.apache.thrift.TBase)new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage());
+ }
+ try {
+ fcall.sendResponse(fb,msg,msgType,seqid);
+ return;
+ } catch (Exception ex) {
+ LOGGER.error("Exception writing to internal frame buffer", ex);
+ }
+ fb.close();
+ }
+ };
+ }
+
+ protected boolean isOneway() {
+ return false;
+ }
+
+ public void start(I iface, setUserConfig_args args, org.apache.thrift.async.AsyncMethodCallback<Void> resultHandler) throws TException {
+ iface.setUserConfig(args.userToken, args.config,resultHandler);
+ }
+ }
+
public static class getOperatingSystems<I extends AsyncIface> extends org.apache.thrift.AsyncProcessFunction<I, getOperatingSystems_args, List<OperatingSystem>> {
public getOperatingSystems() {
super("getOperatingSystems");
@@ -4409,6 +4794,57 @@ public class SatelliteServer {
}
}
+ public static class getStatus<I extends AsyncIface> extends org.apache.thrift.AsyncProcessFunction<I, getStatus_args, SatelliteStatus> {
+ public getStatus() {
+ super("getStatus");
+ }
+
+ public getStatus_args getEmptyArgsInstance() {
+ return new getStatus_args();
+ }
+
+ public AsyncMethodCallback<SatelliteStatus> getResultHandler(final AsyncFrameBuffer fb, final int seqid) {
+ final org.apache.thrift.AsyncProcessFunction fcall = this;
+ return new AsyncMethodCallback<SatelliteStatus>() {
+ public void onComplete(SatelliteStatus o) {
+ getStatus_result result = new getStatus_result();
+ result.success = o;
+ try {
+ fcall.sendResponse(fb,result, org.apache.thrift.protocol.TMessageType.REPLY,seqid);
+ return;
+ } catch (Exception e) {
+ LOGGER.error("Exception writing to internal frame buffer", e);
+ }
+ fb.close();
+ }
+ public void onError(Exception e) {
+ byte msgType = org.apache.thrift.protocol.TMessageType.REPLY;
+ org.apache.thrift.TBase msg;
+ getStatus_result result = new getStatus_result();
+ {
+ msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION;
+ msg = (org.apache.thrift.TBase)new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage());
+ }
+ try {
+ fcall.sendResponse(fb,msg,msgType,seqid);
+ return;
+ } catch (Exception ex) {
+ LOGGER.error("Exception writing to internal frame buffer", ex);
+ }
+ fb.close();
+ }
+ };
+ }
+
+ protected boolean isOneway() {
+ return false;
+ }
+
+ public void start(I iface, getStatus_args args, org.apache.thrift.async.AsyncMethodCallback<SatelliteStatus> resultHandler) throws TException {
+ iface.getStatus(resultHandler);
+ }
+ }
+
public static class getImageList<I extends AsyncIface> extends org.apache.thrift.AsyncProcessFunction<I, getImageList_args, List<ImageSummaryRead>> {
public getImageList() {
super("getImageList");
@@ -4441,8 +4877,8 @@ public class SatelliteServer {
result.setAuthErrorIsSet(true);
msg = result;
}
- else if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
+ else if (e instanceof TInvocationException) {
+ result.serverError = (TInvocationException) e;
result.setServerErrorIsSet(true);
msg = result;
}
@@ -4508,8 +4944,8 @@ public class SatelliteServer {
result.setNotFoundIsSet(true);
msg = result;
}
- else if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
+ else if (e instanceof TInvocationException) {
+ result.serverError = (TInvocationException) e;
result.setServerErrorIsSet(true);
msg = result;
}
@@ -4570,14 +5006,9 @@ public class SatelliteServer {
result.setAuthErrorIsSet(true);
msg = result;
}
- else if (e instanceof TImageDataException) {
- result.imgError = (TImageDataException) e;
- result.setImgErrorIsSet(true);
- msg = result;
- }
- else if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
- result.setServerErrorIsSet(true);
+ else if (e instanceof TInvocationException) {
+ result.error = (TInvocationException) e;
+ result.setErrorIsSet(true);
msg = result;
}
else
@@ -4641,16 +5072,11 @@ public class SatelliteServer {
result.setNotFoundIsSet(true);
msg = result;
}
- else if (e instanceof TImageDataException) {
- result.imgError = (TImageDataException) e;
+ else if (e instanceof TInvocationException) {
+ result.imgError = (TInvocationException) e;
result.setImgErrorIsSet(true);
msg = result;
}
- else if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
- result.setServerErrorIsSet(true);
- msg = result;
- }
else
{
msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION;
@@ -4712,16 +5138,11 @@ public class SatelliteServer {
result.setNotFoundIsSet(true);
msg = result;
}
- else if (e instanceof TImageDataException) {
- result.imgError = (TImageDataException) e;
+ else if (e instanceof TInvocationException) {
+ result.imgError = (TInvocationException) e;
result.setImgErrorIsSet(true);
msg = result;
}
- else if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
- result.setServerErrorIsSet(true);
- msg = result;
- }
else
{
msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION;
@@ -4783,8 +5204,8 @@ public class SatelliteServer {
result.setNotFoundIsSet(true);
msg = result;
}
- else if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
+ else if (e instanceof TInvocationException) {
+ result.serverError = (TInvocationException) e;
result.setServerErrorIsSet(true);
msg = result;
}
@@ -4849,8 +5270,8 @@ public class SatelliteServer {
result.setNotFoundIsSet(true);
msg = result;
}
- else if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
+ else if (e instanceof TInvocationException) {
+ result.serverError = (TInvocationException) e;
result.setServerErrorIsSet(true);
msg = result;
}
@@ -4915,8 +5336,8 @@ public class SatelliteServer {
result.setNotFoundIsSet(true);
msg = result;
}
- else if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
+ else if (e instanceof TInvocationException) {
+ result.serverError = (TInvocationException) e;
result.setServerErrorIsSet(true);
msg = result;
}
@@ -4982,8 +5403,8 @@ public class SatelliteServer {
result.setNotFoundIsSet(true);
msg = result;
}
- else if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
+ else if (e instanceof TInvocationException) {
+ result.serverError = (TInvocationException) e;
result.setServerErrorIsSet(true);
msg = result;
}
@@ -5048,8 +5469,8 @@ public class SatelliteServer {
result.setNotFoundIsSet(true);
msg = result;
}
- else if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
+ else if (e instanceof TInvocationException) {
+ result.serverError = (TInvocationException) e;
result.setServerErrorIsSet(true);
msg = result;
}
@@ -5114,8 +5535,8 @@ public class SatelliteServer {
result.setNotFoundIsSet(true);
msg = result;
}
- else if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
+ else if (e instanceof TInvocationException) {
+ result.serverError = (TInvocationException) e;
result.setServerErrorIsSet(true);
msg = result;
}
@@ -5181,8 +5602,8 @@ public class SatelliteServer {
result.setAuthErrorIsSet(true);
msg = result;
}
- else if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
+ else if (e instanceof TInvocationException) {
+ result.serverError = (TInvocationException) e;
result.setServerErrorIsSet(true);
msg = result;
}
@@ -5252,8 +5673,8 @@ public class SatelliteServer {
result.setNotFoundIsSet(true);
msg = result;
}
- else if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
+ else if (e instanceof TInvocationException) {
+ result.serverError = (TInvocationException) e;
result.setServerErrorIsSet(true);
msg = result;
}
@@ -5319,8 +5740,8 @@ public class SatelliteServer {
result.setAuthErrorIsSet(true);
msg = result;
}
- else if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
+ else if (e instanceof TInvocationException) {
+ result.serverError = (TInvocationException) e;
result.setServerErrorIsSet(true);
msg = result;
}
@@ -5386,8 +5807,8 @@ public class SatelliteServer {
result.setNotFoundIsSet(true);
msg = result;
}
- else if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
+ else if (e instanceof TInvocationException) {
+ result.serverError = (TInvocationException) e;
result.setServerErrorIsSet(true);
msg = result;
}
@@ -5452,8 +5873,8 @@ public class SatelliteServer {
result.setNotFoundIsSet(true);
msg = result;
}
- else if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
+ else if (e instanceof TInvocationException) {
+ result.serverError = (TInvocationException) e;
result.setServerErrorIsSet(true);
msg = result;
}
@@ -5518,8 +5939,8 @@ public class SatelliteServer {
result.setNotFoundIsSet(true);
msg = result;
}
- else if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
+ else if (e instanceof TInvocationException) {
+ result.serverError = (TInvocationException) e;
result.setServerErrorIsSet(true);
msg = result;
}
@@ -5585,8 +6006,8 @@ public class SatelliteServer {
result.setNotFoundIsSet(true);
msg = result;
}
- else if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
+ else if (e instanceof TInvocationException) {
+ result.serverError = (TInvocationException) e;
result.setServerErrorIsSet(true);
msg = result;
}
@@ -5651,8 +6072,8 @@ public class SatelliteServer {
result.setNotFoundIsSet(true);
msg = result;
}
- else if (e instanceof TInternalServerError) {
- result.serverError = (TInternalServerError) e;
+ else if (e instanceof TInvocationException) {
+ result.serverError = (TInvocationException) e;
result.setServerErrorIsSet(true);
msg = result;
}
@@ -7718,7 +8139,7 @@ public class SatelliteServer {
public TransferInformation success; // required
public TTransferRejectedException rejection; // required
public TAuthorizationException authError; // required
- public TInternalServerError ffff; // required
+ public TInvocationException ffff; // required
public TNotFoundException sdf; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
@@ -7816,7 +8237,7 @@ public class SatelliteServer {
TransferInformation success,
TTransferRejectedException rejection,
TAuthorizationException authError,
- TInternalServerError ffff,
+ TInvocationException ffff,
TNotFoundException sdf)
{
this();
@@ -7841,7 +8262,7 @@ public class SatelliteServer {
this.authError = new TAuthorizationException(other.authError);
}
if (other.isSetFfff()) {
- this.ffff = new TInternalServerError(other.ffff);
+ this.ffff = new TInvocationException(other.ffff);
}
if (other.isSetSdf()) {
this.sdf = new TNotFoundException(other.sdf);
@@ -7933,11 +8354,11 @@ public class SatelliteServer {
}
}
- public TInternalServerError getFfff() {
+ public TInvocationException getFfff() {
return this.ffff;
}
- public requestImageVersionUpload_result setFfff(TInternalServerError ffff) {
+ public requestImageVersionUpload_result setFfff(TInvocationException ffff) {
this.ffff = ffff;
return this;
}
@@ -8011,7 +8432,7 @@ public class SatelliteServer {
if (value == null) {
unsetFfff();
} else {
- setFfff((TInternalServerError)value);
+ setFfff((TInvocationException)value);
}
break;
@@ -8326,7 +8747,7 @@ public class SatelliteServer {
break;
case 3: // FFFF
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.ffff = new TInternalServerError();
+ struct.ffff = new TInvocationException();
struct.ffff.read(iprot);
struct.setFfffIsSet(true);
} else {
@@ -8453,7 +8874,7 @@ public class SatelliteServer {
struct.setAuthErrorIsSet(true);
}
if (incoming.get(3)) {
- struct.ffff = new TInternalServerError();
+ struct.ffff = new TInvocationException();
struct.ffff.read(iprot);
struct.setFfffIsSet(true);
}
@@ -11323,7 +11744,7 @@ public class SatelliteServer {
public TransferInformation success; // required
public TTransferRejectedException rejection; // required
public TAuthorizationException authError; // required
- public TInternalServerError ffff; // required
+ public TInvocationException ffff; // required
public TNotFoundException sdf; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
@@ -11421,7 +11842,7 @@ public class SatelliteServer {
TransferInformation success,
TTransferRejectedException rejection,
TAuthorizationException authError,
- TInternalServerError ffff,
+ TInvocationException ffff,
TNotFoundException sdf)
{
this();
@@ -11446,7 +11867,7 @@ public class SatelliteServer {
this.authError = new TAuthorizationException(other.authError);
}
if (other.isSetFfff()) {
- this.ffff = new TInternalServerError(other.ffff);
+ this.ffff = new TInvocationException(other.ffff);
}
if (other.isSetSdf()) {
this.sdf = new TNotFoundException(other.sdf);
@@ -11538,11 +11959,11 @@ public class SatelliteServer {
}
}
- public TInternalServerError getFfff() {
+ public TInvocationException getFfff() {
return this.ffff;
}
- public requestDownload_result setFfff(TInternalServerError ffff) {
+ public requestDownload_result setFfff(TInvocationException ffff) {
this.ffff = ffff;
return this;
}
@@ -11616,7 +12037,7 @@ public class SatelliteServer {
if (value == null) {
unsetFfff();
} else {
- setFfff((TInternalServerError)value);
+ setFfff((TInvocationException)value);
}
break;
@@ -11931,7 +12352,7 @@ public class SatelliteServer {
break;
case 3: // FFFF
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.ffff = new TInternalServerError();
+ struct.ffff = new TInvocationException();
struct.ffff.read(iprot);
struct.setFfffIsSet(true);
} else {
@@ -12058,7 +12479,7 @@ public class SatelliteServer {
struct.setAuthErrorIsSet(true);
}
if (incoming.get(3)) {
- struct.ffff = new TInternalServerError();
+ struct.ffff = new TInvocationException();
struct.ffff.read(iprot);
struct.setFfffIsSet(true);
}
@@ -13252,7 +13673,7 @@ public class SatelliteServer {
public ByteBuffer success; // required
public TAuthorizationException authError; // required
- public TInternalServerError ffff; // required
+ public TInvocationException ffff; // required
public TNotFoundException sdf; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
@@ -13344,7 +13765,7 @@ public class SatelliteServer {
public getMachineDescription_result(
ByteBuffer success,
TAuthorizationException authError,
- TInternalServerError ffff,
+ TInvocationException ffff,
TNotFoundException sdf)
{
this();
@@ -13366,7 +13787,7 @@ public class SatelliteServer {
this.authError = new TAuthorizationException(other.authError);
}
if (other.isSetFfff()) {
- this.ffff = new TInternalServerError(other.ffff);
+ this.ffff = new TInvocationException(other.ffff);
}
if (other.isSetSdf()) {
this.sdf = new TNotFoundException(other.sdf);
@@ -13443,11 +13864,11 @@ public class SatelliteServer {
}
}
- public TInternalServerError getFfff() {
+ public TInvocationException getFfff() {
return this.ffff;
}
- public getMachineDescription_result setFfff(TInternalServerError ffff) {
+ public getMachineDescription_result setFfff(TInvocationException ffff) {
this.ffff = ffff;
return this;
}
@@ -13513,7 +13934,7 @@ public class SatelliteServer {
if (value == null) {
unsetFfff();
} else {
- setFfff((TInternalServerError)value);
+ setFfff((TInvocationException)value);
}
break;
@@ -13783,7 +14204,7 @@ public class SatelliteServer {
break;
case 2: // FFFF
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.ffff = new TInternalServerError();
+ struct.ffff = new TInvocationException();
struct.ffff.read(iprot);
struct.setFfffIsSet(true);
} else {
@@ -13893,7 +14314,7 @@ public class SatelliteServer {
struct.setAuthErrorIsSet(true);
}
if (incoming.get(2)) {
- struct.ffff = new TInternalServerError();
+ struct.ffff = new TInvocationException();
struct.ffff.read(iprot);
struct.setFfffIsSet(true);
}
@@ -14274,7 +14695,7 @@ public class SatelliteServer {
}
public TAuthorizationException authError; // required
- public TInternalServerError serverError; // required
+ public TInvocationException serverError; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
@@ -14354,7 +14775,7 @@ public class SatelliteServer {
public isAuthenticated_result(
TAuthorizationException authError,
- TInternalServerError serverError)
+ TInvocationException serverError)
{
this();
this.authError = authError;
@@ -14369,7 +14790,7 @@ public class SatelliteServer {
this.authError = new TAuthorizationException(other.authError);
}
if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ this.serverError = new TInvocationException(other.serverError);
}
}
@@ -14407,11 +14828,11 @@ public class SatelliteServer {
}
}
- public TInternalServerError getServerError() {
+ public TInvocationException getServerError() {
return this.serverError;
}
- public isAuthenticated_result setServerError(TInternalServerError serverError) {
+ public isAuthenticated_result setServerError(TInvocationException serverError) {
this.serverError = serverError;
return this;
}
@@ -14445,7 +14866,7 @@ public class SatelliteServer {
if (value == null) {
unsetServerError();
} else {
- setServerError((TInternalServerError)value);
+ setServerError((TInvocationException)value);
}
break;
@@ -14635,7 +15056,7 @@ public class SatelliteServer {
break;
case 2: // SERVER_ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
} else {
@@ -14710,7 +15131,7 @@ public class SatelliteServer {
struct.setAuthErrorIsSet(true);
}
if (incoming.get(1)) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
}
@@ -15088,7 +15509,7 @@ public class SatelliteServer {
public WhoamiInfo success; // required
public TAuthorizationException authError; // required
- public TInternalServerError serverError; // required
+ public TInvocationException serverError; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
@@ -15174,7 +15595,7 @@ public class SatelliteServer {
public whoami_result(
WhoamiInfo success,
TAuthorizationException authError,
- TInternalServerError serverError)
+ TInvocationException serverError)
{
this();
this.success = success;
@@ -15193,7 +15614,7 @@ public class SatelliteServer {
this.authError = new TAuthorizationException(other.authError);
}
if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ this.serverError = new TInvocationException(other.serverError);
}
}
@@ -15256,11 +15677,11 @@ public class SatelliteServer {
}
}
- public TInternalServerError getServerError() {
+ public TInvocationException getServerError() {
return this.serverError;
}
- public whoami_result setServerError(TInternalServerError serverError) {
+ public whoami_result setServerError(TInvocationException serverError) {
this.serverError = serverError;
return this;
}
@@ -15302,7 +15723,7 @@ public class SatelliteServer {
if (value == null) {
unsetServerError();
} else {
- setServerError((TInternalServerError)value);
+ setServerError((TInvocationException)value);
}
break;
@@ -15536,7 +15957,7 @@ public class SatelliteServer {
break;
case 2: // SERVER_ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
} else {
@@ -15627,7 +16048,7 @@ public class SatelliteServer {
struct.setAuthErrorIsSet(true);
}
if (incoming.get(2)) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
}
@@ -15993,6 +16414,7 @@ public class SatelliteServer {
public static class invalidateSession_result implements org.apache.thrift.TBase<invalidateSession_result, invalidateSession_result._Fields>, java.io.Serializable, Cloneable, Comparable<invalidateSession_result> {
private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("invalidateSession_result");
+ private static final org.apache.thrift.protocol.TField EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1);
private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
static {
@@ -16000,10 +16422,11 @@ public class SatelliteServer {
schemes.put(TupleScheme.class, new invalidateSession_resultTupleSchemeFactory());
}
+ public TInvalidTokenException ex; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
-;
+ EX((short)1, "ex");
private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
@@ -16018,6 +16441,8 @@ public class SatelliteServer {
*/
public static _Fields findByThriftId(int fieldId) {
switch(fieldId) {
+ case 1: // EX
+ return EX;
default:
return null;
}
@@ -16056,9 +16481,13 @@ public class SatelliteServer {
return _fieldName;
}
}
+
+ // isset id assignments
public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
static {
Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
+ tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(invalidateSession_result.class, metaDataMap);
}
@@ -16066,10 +16495,20 @@ public class SatelliteServer {
public invalidateSession_result() {
}
+ public invalidateSession_result(
+ TInvalidTokenException ex)
+ {
+ this();
+ this.ex = ex;
+ }
+
/**
* Performs a deep copy on <i>other</i>.
*/
public invalidateSession_result(invalidateSession_result other) {
+ if (other.isSetEx()) {
+ this.ex = new TInvalidTokenException(other.ex);
+ }
}
public invalidateSession_result deepCopy() {
@@ -16078,15 +16517,51 @@ public class SatelliteServer {
@Override
public void clear() {
+ this.ex = null;
+ }
+
+ public TInvalidTokenException getEx() {
+ return this.ex;
+ }
+
+ public invalidateSession_result setEx(TInvalidTokenException ex) {
+ this.ex = ex;
+ return this;
+ }
+
+ public void unsetEx() {
+ this.ex = null;
+ }
+
+ /** Returns true if field ex is set (has been assigned a value) and false otherwise */
+ public boolean isSetEx() {
+ return this.ex != null;
+ }
+
+ public void setExIsSet(boolean value) {
+ if (!value) {
+ this.ex = null;
+ }
}
public void setFieldValue(_Fields field, Object value) {
switch (field) {
+ case EX:
+ if (value == null) {
+ unsetEx();
+ } else {
+ setEx((TInvalidTokenException)value);
+ }
+ break;
+
}
}
public Object getFieldValue(_Fields field) {
switch (field) {
+ case EX:
+ return getEx();
+
}
throw new IllegalStateException();
}
@@ -16098,6 +16573,8 @@ public class SatelliteServer {
}
switch (field) {
+ case EX:
+ return isSetEx();
}
throw new IllegalStateException();
}
@@ -16115,6 +16592,15 @@ public class SatelliteServer {
if (that == null)
return false;
+ boolean this_present_ex = true && this.isSetEx();
+ boolean that_present_ex = true && that.isSetEx();
+ if (this_present_ex || that_present_ex) {
+ if (!(this_present_ex && that_present_ex))
+ return false;
+ if (!this.ex.equals(that.ex))
+ return false;
+ }
+
return true;
}
@@ -16131,6 +16617,16 @@ public class SatelliteServer {
int lastComparison = 0;
+ lastComparison = Boolean.valueOf(isSetEx()).compareTo(other.isSetEx());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetEx()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex, other.ex);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
return 0;
}
@@ -16151,6 +16647,13 @@ public class SatelliteServer {
StringBuilder sb = new StringBuilder("invalidateSession_result(");
boolean first = true;
+ sb.append("ex:");
+ if (this.ex == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.ex);
+ }
+ first = false;
sb.append(")");
return sb.toString();
}
@@ -16194,6 +16697,15 @@ public class SatelliteServer {
break;
}
switch (schemeField.id) {
+ case 1: // EX
+ if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
+ struct.ex = new TInvalidTokenException();
+ struct.ex.read(iprot);
+ struct.setExIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
default:
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
@@ -16209,6 +16721,11 @@ public class SatelliteServer {
struct.validate();
oprot.writeStructBegin(STRUCT_DESC);
+ if (struct.ex != null) {
+ oprot.writeFieldBegin(EX_FIELD_DESC);
+ struct.ex.write(oprot);
+ oprot.writeFieldEnd();
+ }
oprot.writeFieldStop();
oprot.writeStructEnd();
}
@@ -16226,11 +16743,25 @@ public class SatelliteServer {
@Override
public void write(org.apache.thrift.protocol.TProtocol prot, invalidateSession_result struct) throws org.apache.thrift.TException {
TTupleProtocol oprot = (TTupleProtocol) prot;
+ BitSet optionals = new BitSet();
+ if (struct.isSetEx()) {
+ optionals.set(0);
+ }
+ oprot.writeBitSet(optionals, 1);
+ if (struct.isSetEx()) {
+ struct.ex.write(oprot);
+ }
}
@Override
public void read(org.apache.thrift.protocol.TProtocol prot, invalidateSession_result struct) throws org.apache.thrift.TException {
TTupleProtocol iprot = (TTupleProtocol) prot;
+ BitSet incoming = iprot.readBitSet(1);
+ if (incoming.get(0)) {
+ struct.ex = new TInvalidTokenException();
+ struct.ex.read(iprot);
+ struct.setExIsSet(true);
+ }
}
}
@@ -16703,7 +17234,7 @@ public class SatelliteServer {
public List<UserInfo> success; // required
public TAuthorizationException failure; // required
- public TInternalServerError serverError; // required
+ public TInvocationException serverError; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
@@ -16790,7 +17321,7 @@ public class SatelliteServer {
public getUserList_result(
List<UserInfo> success,
TAuthorizationException failure,
- TInternalServerError serverError)
+ TInvocationException serverError)
{
this();
this.success = success;
@@ -16813,7 +17344,7 @@ public class SatelliteServer {
this.failure = new TAuthorizationException(other.failure);
}
if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ this.serverError = new TInvocationException(other.serverError);
}
}
@@ -16891,11 +17422,11 @@ public class SatelliteServer {
}
}
- public TInternalServerError getServerError() {
+ public TInvocationException getServerError() {
return this.serverError;
}
- public getUserList_result setServerError(TInternalServerError serverError) {
+ public getUserList_result setServerError(TInvocationException serverError) {
this.serverError = serverError;
return this;
}
@@ -16937,7 +17468,7 @@ public class SatelliteServer {
if (value == null) {
unsetServerError();
} else {
- setServerError((TInternalServerError)value);
+ setServerError((TInvocationException)value);
}
break;
@@ -17178,7 +17709,7 @@ public class SatelliteServer {
break;
case 2: // SERVER_ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
} else {
@@ -17291,7 +17822,1841 @@ public class SatelliteServer {
struct.setFailureIsSet(true);
}
if (incoming.get(2)) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
+ struct.serverError.read(iprot);
+ struct.setServerErrorIsSet(true);
+ }
+ }
+ }
+
+ }
+
+ public static class getUserConfig_args implements org.apache.thrift.TBase<getUserConfig_args, getUserConfig_args._Fields>, java.io.Serializable, Cloneable, Comparable<getUserConfig_args> {
+ private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getUserConfig_args");
+
+ private static final org.apache.thrift.protocol.TField USER_TOKEN_FIELD_DESC = new org.apache.thrift.protocol.TField("userToken", org.apache.thrift.protocol.TType.STRING, (short)1);
+
+ private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
+ static {
+ schemes.put(StandardScheme.class, new getUserConfig_argsStandardSchemeFactory());
+ schemes.put(TupleScheme.class, new getUserConfig_argsTupleSchemeFactory());
+ }
+
+ public String userToken; // required
+
+ /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
+ public enum _Fields implements org.apache.thrift.TFieldIdEnum {
+ USER_TOKEN((short)1, "userToken");
+
+ private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
+
+ static {
+ for (_Fields field : EnumSet.allOf(_Fields.class)) {
+ byName.put(field.getFieldName(), field);
+ }
+ }
+
+ /**
+ * Find the _Fields constant that matches fieldId, or null if its not found.
+ */
+ public static _Fields findByThriftId(int fieldId) {
+ switch(fieldId) {
+ case 1: // USER_TOKEN
+ return USER_TOKEN;
+ default:
+ return null;
+ }
+ }
+
+ /**
+ * Find the _Fields constant that matches fieldId, throwing an exception
+ * if it is not found.
+ */
+ public static _Fields findByThriftIdOrThrow(int fieldId) {
+ _Fields fields = findByThriftId(fieldId);
+ if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
+ return fields;
+ }
+
+ /**
+ * Find the _Fields constant that matches name, or null if its not found.
+ */
+ public static _Fields findByName(String name) {
+ return byName.get(name);
+ }
+
+ private final short _thriftId;
+ private final String _fieldName;
+
+ _Fields(short thriftId, String fieldName) {
+ _thriftId = thriftId;
+ _fieldName = fieldName;
+ }
+
+ public short getThriftFieldId() {
+ return _thriftId;
+ }
+
+ public String getFieldName() {
+ return _fieldName;
+ }
+ }
+
+ // isset id assignments
+ public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
+ static {
+ Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
+ tmpMap.put(_Fields.USER_TOKEN, new org.apache.thrift.meta_data.FieldMetaData("userToken", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Token")));
+ metaDataMap = Collections.unmodifiableMap(tmpMap);
+ org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getUserConfig_args.class, metaDataMap);
+ }
+
+ public getUserConfig_args() {
+ }
+
+ public getUserConfig_args(
+ String userToken)
+ {
+ this();
+ this.userToken = userToken;
+ }
+
+ /**
+ * Performs a deep copy on <i>other</i>.
+ */
+ public getUserConfig_args(getUserConfig_args other) {
+ if (other.isSetUserToken()) {
+ this.userToken = other.userToken;
+ }
+ }
+
+ public getUserConfig_args deepCopy() {
+ return new getUserConfig_args(this);
+ }
+
+ @Override
+ public void clear() {
+ this.userToken = null;
+ }
+
+ public String getUserToken() {
+ return this.userToken;
+ }
+
+ public getUserConfig_args setUserToken(String userToken) {
+ this.userToken = userToken;
+ return this;
+ }
+
+ public void unsetUserToken() {
+ this.userToken = null;
+ }
+
+ /** Returns true if field userToken is set (has been assigned a value) and false otherwise */
+ public boolean isSetUserToken() {
+ return this.userToken != null;
+ }
+
+ public void setUserTokenIsSet(boolean value) {
+ if (!value) {
+ this.userToken = null;
+ }
+ }
+
+ public void setFieldValue(_Fields field, Object value) {
+ switch (field) {
+ case USER_TOKEN:
+ if (value == null) {
+ unsetUserToken();
+ } else {
+ setUserToken((String)value);
+ }
+ break;
+
+ }
+ }
+
+ public Object getFieldValue(_Fields field) {
+ switch (field) {
+ case USER_TOKEN:
+ return getUserToken();
+
+ }
+ throw new IllegalStateException();
+ }
+
+ /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
+ public boolean isSet(_Fields field) {
+ if (field == null) {
+ throw new IllegalArgumentException();
+ }
+
+ switch (field) {
+ case USER_TOKEN:
+ return isSetUserToken();
+ }
+ throw new IllegalStateException();
+ }
+
+ @Override
+ public boolean equals(Object that) {
+ if (that == null)
+ return false;
+ if (that instanceof getUserConfig_args)
+ return this.equals((getUserConfig_args)that);
+ return false;
+ }
+
+ public boolean equals(getUserConfig_args that) {
+ if (that == null)
+ return false;
+
+ boolean this_present_userToken = true && this.isSetUserToken();
+ boolean that_present_userToken = true && that.isSetUserToken();
+ if (this_present_userToken || that_present_userToken) {
+ if (!(this_present_userToken && that_present_userToken))
+ return false;
+ if (!this.userToken.equals(that.userToken))
+ return false;
+ }
+
+ return true;
+ }
+
+ @Override
+ public int hashCode() {
+ return 0;
+ }
+
+ @Override
+ public int compareTo(getUserConfig_args other) {
+ if (!getClass().equals(other.getClass())) {
+ return getClass().getName().compareTo(other.getClass().getName());
+ }
+
+ int lastComparison = 0;
+
+ lastComparison = Boolean.valueOf(isSetUserToken()).compareTo(other.isSetUserToken());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetUserToken()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.userToken, other.userToken);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
+ return 0;
+ }
+
+ public _Fields fieldForId(int fieldId) {
+ return _Fields.findByThriftId(fieldId);
+ }
+
+ public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException {
+ schemes.get(iprot.getScheme()).getScheme().read(iprot, this);
+ }
+
+ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
+ schemes.get(oprot.getScheme()).getScheme().write(oprot, this);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder("getUserConfig_args(");
+ boolean first = true;
+
+ sb.append("userToken:");
+ if (this.userToken == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.userToken);
+ }
+ first = false;
+ sb.append(")");
+ return sb.toString();
+ }
+
+ public void validate() throws org.apache.thrift.TException {
+ // check for required fields
+ // check for sub-struct validity
+ }
+
+ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
+ try {
+ write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out)));
+ } catch (org.apache.thrift.TException te) {
+ throw new java.io.IOException(te);
+ }
+ }
+
+ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
+ try {
+ read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
+ } catch (org.apache.thrift.TException te) {
+ throw new java.io.IOException(te);
+ }
+ }
+
+ private static class getUserConfig_argsStandardSchemeFactory implements SchemeFactory {
+ public getUserConfig_argsStandardScheme getScheme() {
+ return new getUserConfig_argsStandardScheme();
+ }
+ }
+
+ private static class getUserConfig_argsStandardScheme extends StandardScheme<getUserConfig_args> {
+
+ 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();
+ while (true)
+ {
+ schemeField = iprot.readFieldBegin();
+ if (schemeField.type == org.apache.thrift.protocol.TType.STOP) {
+ break;
+ }
+ switch (schemeField.id) {
+ case 1: // USER_TOKEN
+ if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
+ struct.userToken = iprot.readString();
+ struct.setUserTokenIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ default:
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ iprot.readFieldEnd();
+ }
+ iprot.readStructEnd();
+
+ // check for required fields of primitive type, which can't be checked in the validate method
+ struct.validate();
+ }
+
+ public void write(org.apache.thrift.protocol.TProtocol oprot, getUserConfig_args struct) throws org.apache.thrift.TException {
+ struct.validate();
+
+ oprot.writeStructBegin(STRUCT_DESC);
+ if (struct.userToken != null) {
+ oprot.writeFieldBegin(USER_TOKEN_FIELD_DESC);
+ oprot.writeString(struct.userToken);
+ oprot.writeFieldEnd();
+ }
+ oprot.writeFieldStop();
+ oprot.writeStructEnd();
+ }
+
+ }
+
+ private static class getUserConfig_argsTupleSchemeFactory implements SchemeFactory {
+ public getUserConfig_argsTupleScheme getScheme() {
+ return new getUserConfig_argsTupleScheme();
+ }
+ }
+
+ private static class getUserConfig_argsTupleScheme extends TupleScheme<getUserConfig_args> {
+
+ @Override
+ public void write(org.apache.thrift.protocol.TProtocol prot, getUserConfig_args struct) throws org.apache.thrift.TException {
+ TTupleProtocol oprot = (TTupleProtocol) prot;
+ BitSet optionals = new BitSet();
+ if (struct.isSetUserToken()) {
+ optionals.set(0);
+ }
+ oprot.writeBitSet(optionals, 1);
+ if (struct.isSetUserToken()) {
+ oprot.writeString(struct.userToken);
+ }
+ }
+
+ @Override
+ public void read(org.apache.thrift.protocol.TProtocol prot, getUserConfig_args struct) throws org.apache.thrift.TException {
+ TTupleProtocol iprot = (TTupleProtocol) prot;
+ BitSet incoming = iprot.readBitSet(1);
+ if (incoming.get(0)) {
+ struct.userToken = iprot.readString();
+ struct.setUserTokenIsSet(true);
+ }
+ }
+ }
+
+ }
+
+ public static class getUserConfig_result implements org.apache.thrift.TBase<getUserConfig_result, getUserConfig_result._Fields>, java.io.Serializable, Cloneable, Comparable<getUserConfig_result> {
+ private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getUserConfig_result");
+
+ private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.STRUCT, (short)0);
+ private static final org.apache.thrift.protocol.TField FAILURE_FIELD_DESC = new org.apache.thrift.protocol.TField("failure", org.apache.thrift.protocol.TType.STRUCT, (short)1);
+ private static final org.apache.thrift.protocol.TField SERVER_ERROR_FIELD_DESC = new org.apache.thrift.protocol.TField("serverError", org.apache.thrift.protocol.TType.STRUCT, (short)2);
+
+ private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
+ static {
+ schemes.put(StandardScheme.class, new getUserConfig_resultStandardSchemeFactory());
+ schemes.put(TupleScheme.class, new getUserConfig_resultTupleSchemeFactory());
+ }
+
+ public SatelliteUserConfig success; // required
+ public TAuthorizationException failure; // required
+ public TInvocationException serverError; // required
+
+ /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
+ public enum _Fields implements org.apache.thrift.TFieldIdEnum {
+ SUCCESS((short)0, "success"),
+ FAILURE((short)1, "failure"),
+ SERVER_ERROR((short)2, "serverError");
+
+ private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
+
+ static {
+ for (_Fields field : EnumSet.allOf(_Fields.class)) {
+ byName.put(field.getFieldName(), field);
+ }
+ }
+
+ /**
+ * Find the _Fields constant that matches fieldId, or null if its not found.
+ */
+ public static _Fields findByThriftId(int fieldId) {
+ switch(fieldId) {
+ case 0: // SUCCESS
+ return SUCCESS;
+ case 1: // FAILURE
+ return FAILURE;
+ case 2: // SERVER_ERROR
+ return SERVER_ERROR;
+ default:
+ return null;
+ }
+ }
+
+ /**
+ * Find the _Fields constant that matches fieldId, throwing an exception
+ * if it is not found.
+ */
+ public static _Fields findByThriftIdOrThrow(int fieldId) {
+ _Fields fields = findByThriftId(fieldId);
+ if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
+ return fields;
+ }
+
+ /**
+ * Find the _Fields constant that matches name, or null if its not found.
+ */
+ public static _Fields findByName(String name) {
+ return byName.get(name);
+ }
+
+ private final short _thriftId;
+ private final String _fieldName;
+
+ _Fields(short thriftId, String fieldName) {
+ _thriftId = thriftId;
+ _fieldName = fieldName;
+ }
+
+ public short getThriftFieldId() {
+ return _thriftId;
+ }
+
+ public String getFieldName() {
+ return _fieldName;
+ }
+ }
+
+ // isset id assignments
+ public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
+ static {
+ Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
+ tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, SatelliteUserConfig.class)));
+ tmpMap.put(_Fields.FAILURE, new org.apache.thrift.meta_data.FieldMetaData("failure", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
+ tmpMap.put(_Fields.SERVER_ERROR, new org.apache.thrift.meta_data.FieldMetaData("serverError", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
+ metaDataMap = Collections.unmodifiableMap(tmpMap);
+ org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getUserConfig_result.class, metaDataMap);
+ }
+
+ public getUserConfig_result() {
+ }
+
+ public getUserConfig_result(
+ SatelliteUserConfig success,
+ TAuthorizationException failure,
+ TInvocationException serverError)
+ {
+ this();
+ this.success = success;
+ this.failure = failure;
+ this.serverError = serverError;
+ }
+
+ /**
+ * Performs a deep copy on <i>other</i>.
+ */
+ public getUserConfig_result(getUserConfig_result other) {
+ if (other.isSetSuccess()) {
+ this.success = new SatelliteUserConfig(other.success);
+ }
+ if (other.isSetFailure()) {
+ this.failure = new TAuthorizationException(other.failure);
+ }
+ if (other.isSetServerError()) {
+ this.serverError = new TInvocationException(other.serverError);
+ }
+ }
+
+ public getUserConfig_result deepCopy() {
+ return new getUserConfig_result(this);
+ }
+
+ @Override
+ public void clear() {
+ this.success = null;
+ this.failure = null;
+ this.serverError = null;
+ }
+
+ public SatelliteUserConfig getSuccess() {
+ return this.success;
+ }
+
+ public getUserConfig_result setSuccess(SatelliteUserConfig success) {
+ this.success = success;
+ return this;
+ }
+
+ public void unsetSuccess() {
+ this.success = null;
+ }
+
+ /** Returns true if field success is set (has been assigned a value) and false otherwise */
+ public boolean isSetSuccess() {
+ return this.success != null;
+ }
+
+ public void setSuccessIsSet(boolean value) {
+ if (!value) {
+ this.success = null;
+ }
+ }
+
+ public TAuthorizationException getFailure() {
+ return this.failure;
+ }
+
+ public getUserConfig_result setFailure(TAuthorizationException failure) {
+ this.failure = failure;
+ return this;
+ }
+
+ public void unsetFailure() {
+ this.failure = null;
+ }
+
+ /** Returns true if field failure is set (has been assigned a value) and false otherwise */
+ public boolean isSetFailure() {
+ return this.failure != null;
+ }
+
+ public void setFailureIsSet(boolean value) {
+ if (!value) {
+ this.failure = null;
+ }
+ }
+
+ public TInvocationException getServerError() {
+ return this.serverError;
+ }
+
+ public getUserConfig_result setServerError(TInvocationException serverError) {
+ this.serverError = serverError;
+ return this;
+ }
+
+ public void unsetServerError() {
+ this.serverError = null;
+ }
+
+ /** Returns true if field serverError is set (has been assigned a value) and false otherwise */
+ public boolean isSetServerError() {
+ return this.serverError != null;
+ }
+
+ public void setServerErrorIsSet(boolean value) {
+ if (!value) {
+ this.serverError = null;
+ }
+ }
+
+ public void setFieldValue(_Fields field, Object value) {
+ switch (field) {
+ case SUCCESS:
+ if (value == null) {
+ unsetSuccess();
+ } else {
+ setSuccess((SatelliteUserConfig)value);
+ }
+ break;
+
+ case FAILURE:
+ if (value == null) {
+ unsetFailure();
+ } else {
+ setFailure((TAuthorizationException)value);
+ }
+ break;
+
+ case SERVER_ERROR:
+ if (value == null) {
+ unsetServerError();
+ } else {
+ setServerError((TInvocationException)value);
+ }
+ break;
+
+ }
+ }
+
+ public Object getFieldValue(_Fields field) {
+ switch (field) {
+ case SUCCESS:
+ return getSuccess();
+
+ case FAILURE:
+ return getFailure();
+
+ case SERVER_ERROR:
+ return getServerError();
+
+ }
+ throw new IllegalStateException();
+ }
+
+ /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
+ public boolean isSet(_Fields field) {
+ if (field == null) {
+ throw new IllegalArgumentException();
+ }
+
+ switch (field) {
+ case SUCCESS:
+ return isSetSuccess();
+ case FAILURE:
+ return isSetFailure();
+ case SERVER_ERROR:
+ return isSetServerError();
+ }
+ throw new IllegalStateException();
+ }
+
+ @Override
+ public boolean equals(Object that) {
+ if (that == null)
+ return false;
+ if (that instanceof getUserConfig_result)
+ return this.equals((getUserConfig_result)that);
+ return false;
+ }
+
+ public boolean equals(getUserConfig_result that) {
+ if (that == null)
+ return false;
+
+ boolean this_present_success = true && this.isSetSuccess();
+ boolean that_present_success = true && that.isSetSuccess();
+ if (this_present_success || that_present_success) {
+ if (!(this_present_success && that_present_success))
+ return false;
+ if (!this.success.equals(that.success))
+ return false;
+ }
+
+ boolean this_present_failure = true && this.isSetFailure();
+ boolean that_present_failure = true && that.isSetFailure();
+ if (this_present_failure || that_present_failure) {
+ if (!(this_present_failure && that_present_failure))
+ return false;
+ if (!this.failure.equals(that.failure))
+ return false;
+ }
+
+ boolean this_present_serverError = true && this.isSetServerError();
+ boolean that_present_serverError = true && that.isSetServerError();
+ if (this_present_serverError || that_present_serverError) {
+ if (!(this_present_serverError && that_present_serverError))
+ return false;
+ if (!this.serverError.equals(that.serverError))
+ return false;
+ }
+
+ return true;
+ }
+
+ @Override
+ public int hashCode() {
+ return 0;
+ }
+
+ @Override
+ public int compareTo(getUserConfig_result other) {
+ if (!getClass().equals(other.getClass())) {
+ return getClass().getName().compareTo(other.getClass().getName());
+ }
+
+ int lastComparison = 0;
+
+ lastComparison = Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetSuccess()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.success, other.success);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
+ lastComparison = Boolean.valueOf(isSetFailure()).compareTo(other.isSetFailure());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetFailure()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.failure, other.failure);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
+ lastComparison = Boolean.valueOf(isSetServerError()).compareTo(other.isSetServerError());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetServerError()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.serverError, other.serverError);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
+ return 0;
+ }
+
+ public _Fields fieldForId(int fieldId) {
+ return _Fields.findByThriftId(fieldId);
+ }
+
+ public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException {
+ schemes.get(iprot.getScheme()).getScheme().read(iprot, this);
+ }
+
+ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
+ schemes.get(oprot.getScheme()).getScheme().write(oprot, this);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder("getUserConfig_result(");
+ boolean first = true;
+
+ sb.append("success:");
+ if (this.success == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.success);
+ }
+ first = false;
+ if (!first) sb.append(", ");
+ sb.append("failure:");
+ if (this.failure == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.failure);
+ }
+ first = false;
+ if (!first) sb.append(", ");
+ sb.append("serverError:");
+ if (this.serverError == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.serverError);
+ }
+ first = false;
+ sb.append(")");
+ return sb.toString();
+ }
+
+ public void validate() throws org.apache.thrift.TException {
+ // check for required fields
+ // check for sub-struct validity
+ if (success != null) {
+ success.validate();
+ }
+ }
+
+ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
+ try {
+ write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out)));
+ } catch (org.apache.thrift.TException te) {
+ throw new java.io.IOException(te);
+ }
+ }
+
+ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
+ try {
+ read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
+ } catch (org.apache.thrift.TException te) {
+ throw new java.io.IOException(te);
+ }
+ }
+
+ private static class getUserConfig_resultStandardSchemeFactory implements SchemeFactory {
+ public getUserConfig_resultStandardScheme getScheme() {
+ return new getUserConfig_resultStandardScheme();
+ }
+ }
+
+ private static class getUserConfig_resultStandardScheme extends StandardScheme<getUserConfig_result> {
+
+ 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();
+ while (true)
+ {
+ schemeField = iprot.readFieldBegin();
+ if (schemeField.type == org.apache.thrift.protocol.TType.STOP) {
+ break;
+ }
+ switch (schemeField.id) {
+ case 0: // SUCCESS
+ if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
+ struct.success = new SatelliteUserConfig();
+ struct.success.read(iprot);
+ struct.setSuccessIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ case 1: // FAILURE
+ if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
+ struct.failure = new TAuthorizationException();
+ struct.failure.read(iprot);
+ struct.setFailureIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ case 2: // SERVER_ERROR
+ if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
+ struct.serverError = new TInvocationException();
+ struct.serverError.read(iprot);
+ struct.setServerErrorIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ default:
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ iprot.readFieldEnd();
+ }
+ iprot.readStructEnd();
+
+ // check for required fields of primitive type, which can't be checked in the validate method
+ struct.validate();
+ }
+
+ public void write(org.apache.thrift.protocol.TProtocol oprot, getUserConfig_result struct) throws org.apache.thrift.TException {
+ struct.validate();
+
+ oprot.writeStructBegin(STRUCT_DESC);
+ if (struct.success != null) {
+ oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
+ struct.success.write(oprot);
+ oprot.writeFieldEnd();
+ }
+ if (struct.failure != null) {
+ oprot.writeFieldBegin(FAILURE_FIELD_DESC);
+ struct.failure.write(oprot);
+ oprot.writeFieldEnd();
+ }
+ if (struct.serverError != null) {
+ oprot.writeFieldBegin(SERVER_ERROR_FIELD_DESC);
+ struct.serverError.write(oprot);
+ oprot.writeFieldEnd();
+ }
+ oprot.writeFieldStop();
+ oprot.writeStructEnd();
+ }
+
+ }
+
+ private static class getUserConfig_resultTupleSchemeFactory implements SchemeFactory {
+ public getUserConfig_resultTupleScheme getScheme() {
+ return new getUserConfig_resultTupleScheme();
+ }
+ }
+
+ private static class getUserConfig_resultTupleScheme extends TupleScheme<getUserConfig_result> {
+
+ @Override
+ public void write(org.apache.thrift.protocol.TProtocol prot, getUserConfig_result struct) throws org.apache.thrift.TException {
+ TTupleProtocol oprot = (TTupleProtocol) prot;
+ BitSet optionals = new BitSet();
+ if (struct.isSetSuccess()) {
+ optionals.set(0);
+ }
+ if (struct.isSetFailure()) {
+ optionals.set(1);
+ }
+ if (struct.isSetServerError()) {
+ optionals.set(2);
+ }
+ oprot.writeBitSet(optionals, 3);
+ if (struct.isSetSuccess()) {
+ struct.success.write(oprot);
+ }
+ if (struct.isSetFailure()) {
+ struct.failure.write(oprot);
+ }
+ if (struct.isSetServerError()) {
+ struct.serverError.write(oprot);
+ }
+ }
+
+ @Override
+ public void read(org.apache.thrift.protocol.TProtocol prot, getUserConfig_result struct) throws org.apache.thrift.TException {
+ TTupleProtocol iprot = (TTupleProtocol) prot;
+ BitSet incoming = iprot.readBitSet(3);
+ if (incoming.get(0)) {
+ struct.success = new SatelliteUserConfig();
+ struct.success.read(iprot);
+ struct.setSuccessIsSet(true);
+ }
+ if (incoming.get(1)) {
+ struct.failure = new TAuthorizationException();
+ struct.failure.read(iprot);
+ struct.setFailureIsSet(true);
+ }
+ if (incoming.get(2)) {
+ struct.serverError = new TInvocationException();
+ struct.serverError.read(iprot);
+ struct.setServerErrorIsSet(true);
+ }
+ }
+ }
+
+ }
+
+ public static class setUserConfig_args implements org.apache.thrift.TBase<setUserConfig_args, setUserConfig_args._Fields>, java.io.Serializable, Cloneable, Comparable<setUserConfig_args> {
+ private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("setUserConfig_args");
+
+ private static final org.apache.thrift.protocol.TField USER_TOKEN_FIELD_DESC = new org.apache.thrift.protocol.TField("userToken", org.apache.thrift.protocol.TType.STRING, (short)1);
+ private static final org.apache.thrift.protocol.TField CONFIG_FIELD_DESC = new org.apache.thrift.protocol.TField("config", org.apache.thrift.protocol.TType.STRUCT, (short)2);
+
+ private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
+ static {
+ schemes.put(StandardScheme.class, new setUserConfig_argsStandardSchemeFactory());
+ schemes.put(TupleScheme.class, new setUserConfig_argsTupleSchemeFactory());
+ }
+
+ public String userToken; // required
+ public SatelliteUserConfig config; // required
+
+ /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
+ public enum _Fields implements org.apache.thrift.TFieldIdEnum {
+ USER_TOKEN((short)1, "userToken"),
+ CONFIG((short)2, "config");
+
+ private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
+
+ static {
+ for (_Fields field : EnumSet.allOf(_Fields.class)) {
+ byName.put(field.getFieldName(), field);
+ }
+ }
+
+ /**
+ * Find the _Fields constant that matches fieldId, or null if its not found.
+ */
+ public static _Fields findByThriftId(int fieldId) {
+ switch(fieldId) {
+ case 1: // USER_TOKEN
+ return USER_TOKEN;
+ case 2: // CONFIG
+ return CONFIG;
+ default:
+ return null;
+ }
+ }
+
+ /**
+ * Find the _Fields constant that matches fieldId, throwing an exception
+ * if it is not found.
+ */
+ public static _Fields findByThriftIdOrThrow(int fieldId) {
+ _Fields fields = findByThriftId(fieldId);
+ if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
+ return fields;
+ }
+
+ /**
+ * Find the _Fields constant that matches name, or null if its not found.
+ */
+ public static _Fields findByName(String name) {
+ return byName.get(name);
+ }
+
+ private final short _thriftId;
+ private final String _fieldName;
+
+ _Fields(short thriftId, String fieldName) {
+ _thriftId = thriftId;
+ _fieldName = fieldName;
+ }
+
+ public short getThriftFieldId() {
+ return _thriftId;
+ }
+
+ public String getFieldName() {
+ return _fieldName;
+ }
+ }
+
+ // isset id assignments
+ public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
+ static {
+ Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
+ tmpMap.put(_Fields.USER_TOKEN, new org.apache.thrift.meta_data.FieldMetaData("userToken", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Token")));
+ tmpMap.put(_Fields.CONFIG, new org.apache.thrift.meta_data.FieldMetaData("config", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, SatelliteUserConfig.class)));
+ metaDataMap = Collections.unmodifiableMap(tmpMap);
+ org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(setUserConfig_args.class, metaDataMap);
+ }
+
+ public setUserConfig_args() {
+ }
+
+ public setUserConfig_args(
+ String userToken,
+ SatelliteUserConfig config)
+ {
+ this();
+ this.userToken = userToken;
+ this.config = config;
+ }
+
+ /**
+ * Performs a deep copy on <i>other</i>.
+ */
+ public setUserConfig_args(setUserConfig_args other) {
+ if (other.isSetUserToken()) {
+ this.userToken = other.userToken;
+ }
+ if (other.isSetConfig()) {
+ this.config = new SatelliteUserConfig(other.config);
+ }
+ }
+
+ public setUserConfig_args deepCopy() {
+ return new setUserConfig_args(this);
+ }
+
+ @Override
+ public void clear() {
+ this.userToken = null;
+ this.config = null;
+ }
+
+ public String getUserToken() {
+ return this.userToken;
+ }
+
+ public setUserConfig_args setUserToken(String userToken) {
+ this.userToken = userToken;
+ return this;
+ }
+
+ public void unsetUserToken() {
+ this.userToken = null;
+ }
+
+ /** Returns true if field userToken is set (has been assigned a value) and false otherwise */
+ public boolean isSetUserToken() {
+ return this.userToken != null;
+ }
+
+ public void setUserTokenIsSet(boolean value) {
+ if (!value) {
+ this.userToken = null;
+ }
+ }
+
+ public SatelliteUserConfig getConfig() {
+ return this.config;
+ }
+
+ public setUserConfig_args setConfig(SatelliteUserConfig config) {
+ this.config = config;
+ return this;
+ }
+
+ public void unsetConfig() {
+ this.config = null;
+ }
+
+ /** Returns true if field config is set (has been assigned a value) and false otherwise */
+ public boolean isSetConfig() {
+ return this.config != null;
+ }
+
+ public void setConfigIsSet(boolean value) {
+ if (!value) {
+ this.config = null;
+ }
+ }
+
+ public void setFieldValue(_Fields field, Object value) {
+ switch (field) {
+ case USER_TOKEN:
+ if (value == null) {
+ unsetUserToken();
+ } else {
+ setUserToken((String)value);
+ }
+ break;
+
+ case CONFIG:
+ if (value == null) {
+ unsetConfig();
+ } else {
+ setConfig((SatelliteUserConfig)value);
+ }
+ break;
+
+ }
+ }
+
+ public Object getFieldValue(_Fields field) {
+ switch (field) {
+ case USER_TOKEN:
+ return getUserToken();
+
+ case CONFIG:
+ return getConfig();
+
+ }
+ throw new IllegalStateException();
+ }
+
+ /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
+ public boolean isSet(_Fields field) {
+ if (field == null) {
+ throw new IllegalArgumentException();
+ }
+
+ switch (field) {
+ case USER_TOKEN:
+ return isSetUserToken();
+ case CONFIG:
+ return isSetConfig();
+ }
+ throw new IllegalStateException();
+ }
+
+ @Override
+ public boolean equals(Object that) {
+ if (that == null)
+ return false;
+ if (that instanceof setUserConfig_args)
+ return this.equals((setUserConfig_args)that);
+ return false;
+ }
+
+ public boolean equals(setUserConfig_args that) {
+ if (that == null)
+ return false;
+
+ boolean this_present_userToken = true && this.isSetUserToken();
+ boolean that_present_userToken = true && that.isSetUserToken();
+ if (this_present_userToken || that_present_userToken) {
+ if (!(this_present_userToken && that_present_userToken))
+ return false;
+ if (!this.userToken.equals(that.userToken))
+ return false;
+ }
+
+ boolean this_present_config = true && this.isSetConfig();
+ boolean that_present_config = true && that.isSetConfig();
+ if (this_present_config || that_present_config) {
+ if (!(this_present_config && that_present_config))
+ return false;
+ if (!this.config.equals(that.config))
+ return false;
+ }
+
+ return true;
+ }
+
+ @Override
+ public int hashCode() {
+ return 0;
+ }
+
+ @Override
+ public int compareTo(setUserConfig_args other) {
+ if (!getClass().equals(other.getClass())) {
+ return getClass().getName().compareTo(other.getClass().getName());
+ }
+
+ int lastComparison = 0;
+
+ lastComparison = Boolean.valueOf(isSetUserToken()).compareTo(other.isSetUserToken());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetUserToken()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.userToken, other.userToken);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
+ lastComparison = Boolean.valueOf(isSetConfig()).compareTo(other.isSetConfig());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetConfig()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.config, other.config);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
+ return 0;
+ }
+
+ public _Fields fieldForId(int fieldId) {
+ return _Fields.findByThriftId(fieldId);
+ }
+
+ public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException {
+ schemes.get(iprot.getScheme()).getScheme().read(iprot, this);
+ }
+
+ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
+ schemes.get(oprot.getScheme()).getScheme().write(oprot, this);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder("setUserConfig_args(");
+ boolean first = true;
+
+ sb.append("userToken:");
+ if (this.userToken == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.userToken);
+ }
+ first = false;
+ if (!first) sb.append(", ");
+ sb.append("config:");
+ if (this.config == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.config);
+ }
+ first = false;
+ sb.append(")");
+ return sb.toString();
+ }
+
+ public void validate() throws org.apache.thrift.TException {
+ // check for required fields
+ // check for sub-struct validity
+ if (config != null) {
+ config.validate();
+ }
+ }
+
+ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
+ try {
+ write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out)));
+ } catch (org.apache.thrift.TException te) {
+ throw new java.io.IOException(te);
+ }
+ }
+
+ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
+ try {
+ read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
+ } catch (org.apache.thrift.TException te) {
+ throw new java.io.IOException(te);
+ }
+ }
+
+ private static class setUserConfig_argsStandardSchemeFactory implements SchemeFactory {
+ public setUserConfig_argsStandardScheme getScheme() {
+ return new setUserConfig_argsStandardScheme();
+ }
+ }
+
+ private static class setUserConfig_argsStandardScheme extends StandardScheme<setUserConfig_args> {
+
+ 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();
+ while (true)
+ {
+ schemeField = iprot.readFieldBegin();
+ if (schemeField.type == org.apache.thrift.protocol.TType.STOP) {
+ break;
+ }
+ switch (schemeField.id) {
+ case 1: // USER_TOKEN
+ if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
+ struct.userToken = iprot.readString();
+ struct.setUserTokenIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ case 2: // CONFIG
+ if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
+ struct.config = new SatelliteUserConfig();
+ struct.config.read(iprot);
+ struct.setConfigIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ default:
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ iprot.readFieldEnd();
+ }
+ iprot.readStructEnd();
+
+ // check for required fields of primitive type, which can't be checked in the validate method
+ struct.validate();
+ }
+
+ public void write(org.apache.thrift.protocol.TProtocol oprot, setUserConfig_args struct) throws org.apache.thrift.TException {
+ struct.validate();
+
+ oprot.writeStructBegin(STRUCT_DESC);
+ if (struct.userToken != null) {
+ oprot.writeFieldBegin(USER_TOKEN_FIELD_DESC);
+ oprot.writeString(struct.userToken);
+ oprot.writeFieldEnd();
+ }
+ if (struct.config != null) {
+ oprot.writeFieldBegin(CONFIG_FIELD_DESC);
+ struct.config.write(oprot);
+ oprot.writeFieldEnd();
+ }
+ oprot.writeFieldStop();
+ oprot.writeStructEnd();
+ }
+
+ }
+
+ private static class setUserConfig_argsTupleSchemeFactory implements SchemeFactory {
+ public setUserConfig_argsTupleScheme getScheme() {
+ return new setUserConfig_argsTupleScheme();
+ }
+ }
+
+ private static class setUserConfig_argsTupleScheme extends TupleScheme<setUserConfig_args> {
+
+ @Override
+ public void write(org.apache.thrift.protocol.TProtocol prot, setUserConfig_args struct) throws org.apache.thrift.TException {
+ TTupleProtocol oprot = (TTupleProtocol) prot;
+ BitSet optionals = new BitSet();
+ if (struct.isSetUserToken()) {
+ optionals.set(0);
+ }
+ if (struct.isSetConfig()) {
+ optionals.set(1);
+ }
+ oprot.writeBitSet(optionals, 2);
+ if (struct.isSetUserToken()) {
+ oprot.writeString(struct.userToken);
+ }
+ if (struct.isSetConfig()) {
+ struct.config.write(oprot);
+ }
+ }
+
+ @Override
+ public void read(org.apache.thrift.protocol.TProtocol prot, setUserConfig_args struct) throws org.apache.thrift.TException {
+ TTupleProtocol iprot = (TTupleProtocol) prot;
+ BitSet incoming = iprot.readBitSet(2);
+ if (incoming.get(0)) {
+ struct.userToken = iprot.readString();
+ struct.setUserTokenIsSet(true);
+ }
+ if (incoming.get(1)) {
+ struct.config = new SatelliteUserConfig();
+ struct.config.read(iprot);
+ struct.setConfigIsSet(true);
+ }
+ }
+ }
+
+ }
+
+ public static class setUserConfig_result implements org.apache.thrift.TBase<setUserConfig_result, setUserConfig_result._Fields>, java.io.Serializable, Cloneable, Comparable<setUserConfig_result> {
+ private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("setUserConfig_result");
+
+ private static final org.apache.thrift.protocol.TField FAILURE_FIELD_DESC = new org.apache.thrift.protocol.TField("failure", org.apache.thrift.protocol.TType.STRUCT, (short)1);
+ private static final org.apache.thrift.protocol.TField SERVER_ERROR_FIELD_DESC = new org.apache.thrift.protocol.TField("serverError", org.apache.thrift.protocol.TType.STRUCT, (short)2);
+
+ private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
+ static {
+ schemes.put(StandardScheme.class, new setUserConfig_resultStandardSchemeFactory());
+ schemes.put(TupleScheme.class, new setUserConfig_resultTupleSchemeFactory());
+ }
+
+ public TAuthorizationException failure; // required
+ public TInvocationException serverError; // required
+
+ /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
+ public enum _Fields implements org.apache.thrift.TFieldIdEnum {
+ FAILURE((short)1, "failure"),
+ SERVER_ERROR((short)2, "serverError");
+
+ private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
+
+ static {
+ for (_Fields field : EnumSet.allOf(_Fields.class)) {
+ byName.put(field.getFieldName(), field);
+ }
+ }
+
+ /**
+ * Find the _Fields constant that matches fieldId, or null if its not found.
+ */
+ public static _Fields findByThriftId(int fieldId) {
+ switch(fieldId) {
+ case 1: // FAILURE
+ return FAILURE;
+ case 2: // SERVER_ERROR
+ return SERVER_ERROR;
+ default:
+ return null;
+ }
+ }
+
+ /**
+ * Find the _Fields constant that matches fieldId, throwing an exception
+ * if it is not found.
+ */
+ public static _Fields findByThriftIdOrThrow(int fieldId) {
+ _Fields fields = findByThriftId(fieldId);
+ if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
+ return fields;
+ }
+
+ /**
+ * Find the _Fields constant that matches name, or null if its not found.
+ */
+ public static _Fields findByName(String name) {
+ return byName.get(name);
+ }
+
+ private final short _thriftId;
+ private final String _fieldName;
+
+ _Fields(short thriftId, String fieldName) {
+ _thriftId = thriftId;
+ _fieldName = fieldName;
+ }
+
+ public short getThriftFieldId() {
+ return _thriftId;
+ }
+
+ public String getFieldName() {
+ return _fieldName;
+ }
+ }
+
+ // isset id assignments
+ public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
+ static {
+ Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
+ tmpMap.put(_Fields.FAILURE, new org.apache.thrift.meta_data.FieldMetaData("failure", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
+ tmpMap.put(_Fields.SERVER_ERROR, new org.apache.thrift.meta_data.FieldMetaData("serverError", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
+ metaDataMap = Collections.unmodifiableMap(tmpMap);
+ org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(setUserConfig_result.class, metaDataMap);
+ }
+
+ public setUserConfig_result() {
+ }
+
+ public setUserConfig_result(
+ TAuthorizationException failure,
+ TInvocationException serverError)
+ {
+ this();
+ this.failure = failure;
+ this.serverError = serverError;
+ }
+
+ /**
+ * Performs a deep copy on <i>other</i>.
+ */
+ public setUserConfig_result(setUserConfig_result other) {
+ if (other.isSetFailure()) {
+ this.failure = new TAuthorizationException(other.failure);
+ }
+ if (other.isSetServerError()) {
+ this.serverError = new TInvocationException(other.serverError);
+ }
+ }
+
+ public setUserConfig_result deepCopy() {
+ return new setUserConfig_result(this);
+ }
+
+ @Override
+ public void clear() {
+ this.failure = null;
+ this.serverError = null;
+ }
+
+ public TAuthorizationException getFailure() {
+ return this.failure;
+ }
+
+ public setUserConfig_result setFailure(TAuthorizationException failure) {
+ this.failure = failure;
+ return this;
+ }
+
+ public void unsetFailure() {
+ this.failure = null;
+ }
+
+ /** Returns true if field failure is set (has been assigned a value) and false otherwise */
+ public boolean isSetFailure() {
+ return this.failure != null;
+ }
+
+ public void setFailureIsSet(boolean value) {
+ if (!value) {
+ this.failure = null;
+ }
+ }
+
+ public TInvocationException getServerError() {
+ return this.serverError;
+ }
+
+ public setUserConfig_result setServerError(TInvocationException serverError) {
+ this.serverError = serverError;
+ return this;
+ }
+
+ public void unsetServerError() {
+ this.serverError = null;
+ }
+
+ /** Returns true if field serverError is set (has been assigned a value) and false otherwise */
+ public boolean isSetServerError() {
+ return this.serverError != null;
+ }
+
+ public void setServerErrorIsSet(boolean value) {
+ if (!value) {
+ this.serverError = null;
+ }
+ }
+
+ public void setFieldValue(_Fields field, Object value) {
+ switch (field) {
+ case FAILURE:
+ if (value == null) {
+ unsetFailure();
+ } else {
+ setFailure((TAuthorizationException)value);
+ }
+ break;
+
+ case SERVER_ERROR:
+ if (value == null) {
+ unsetServerError();
+ } else {
+ setServerError((TInvocationException)value);
+ }
+ break;
+
+ }
+ }
+
+ public Object getFieldValue(_Fields field) {
+ switch (field) {
+ case FAILURE:
+ return getFailure();
+
+ case SERVER_ERROR:
+ return getServerError();
+
+ }
+ throw new IllegalStateException();
+ }
+
+ /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
+ public boolean isSet(_Fields field) {
+ if (field == null) {
+ throw new IllegalArgumentException();
+ }
+
+ switch (field) {
+ case FAILURE:
+ return isSetFailure();
+ case SERVER_ERROR:
+ return isSetServerError();
+ }
+ throw new IllegalStateException();
+ }
+
+ @Override
+ public boolean equals(Object that) {
+ if (that == null)
+ return false;
+ if (that instanceof setUserConfig_result)
+ return this.equals((setUserConfig_result)that);
+ return false;
+ }
+
+ public boolean equals(setUserConfig_result that) {
+ if (that == null)
+ return false;
+
+ boolean this_present_failure = true && this.isSetFailure();
+ boolean that_present_failure = true && that.isSetFailure();
+ if (this_present_failure || that_present_failure) {
+ if (!(this_present_failure && that_present_failure))
+ return false;
+ if (!this.failure.equals(that.failure))
+ return false;
+ }
+
+ boolean this_present_serverError = true && this.isSetServerError();
+ boolean that_present_serverError = true && that.isSetServerError();
+ if (this_present_serverError || that_present_serverError) {
+ if (!(this_present_serverError && that_present_serverError))
+ return false;
+ if (!this.serverError.equals(that.serverError))
+ return false;
+ }
+
+ return true;
+ }
+
+ @Override
+ public int hashCode() {
+ return 0;
+ }
+
+ @Override
+ public int compareTo(setUserConfig_result other) {
+ if (!getClass().equals(other.getClass())) {
+ return getClass().getName().compareTo(other.getClass().getName());
+ }
+
+ int lastComparison = 0;
+
+ lastComparison = Boolean.valueOf(isSetFailure()).compareTo(other.isSetFailure());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetFailure()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.failure, other.failure);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
+ lastComparison = Boolean.valueOf(isSetServerError()).compareTo(other.isSetServerError());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetServerError()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.serverError, other.serverError);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
+ return 0;
+ }
+
+ public _Fields fieldForId(int fieldId) {
+ return _Fields.findByThriftId(fieldId);
+ }
+
+ public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException {
+ schemes.get(iprot.getScheme()).getScheme().read(iprot, this);
+ }
+
+ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
+ schemes.get(oprot.getScheme()).getScheme().write(oprot, this);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder("setUserConfig_result(");
+ boolean first = true;
+
+ sb.append("failure:");
+ if (this.failure == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.failure);
+ }
+ first = false;
+ if (!first) sb.append(", ");
+ sb.append("serverError:");
+ if (this.serverError == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.serverError);
+ }
+ first = false;
+ sb.append(")");
+ return sb.toString();
+ }
+
+ public void validate() throws org.apache.thrift.TException {
+ // check for required fields
+ // check for sub-struct validity
+ }
+
+ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
+ try {
+ write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out)));
+ } catch (org.apache.thrift.TException te) {
+ throw new java.io.IOException(te);
+ }
+ }
+
+ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
+ try {
+ read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
+ } catch (org.apache.thrift.TException te) {
+ throw new java.io.IOException(te);
+ }
+ }
+
+ private static class setUserConfig_resultStandardSchemeFactory implements SchemeFactory {
+ public setUserConfig_resultStandardScheme getScheme() {
+ return new setUserConfig_resultStandardScheme();
+ }
+ }
+
+ private static class setUserConfig_resultStandardScheme extends StandardScheme<setUserConfig_result> {
+
+ 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();
+ while (true)
+ {
+ schemeField = iprot.readFieldBegin();
+ if (schemeField.type == org.apache.thrift.protocol.TType.STOP) {
+ break;
+ }
+ switch (schemeField.id) {
+ case 1: // FAILURE
+ if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
+ struct.failure = new TAuthorizationException();
+ struct.failure.read(iprot);
+ struct.setFailureIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ case 2: // SERVER_ERROR
+ if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
+ struct.serverError = new TInvocationException();
+ struct.serverError.read(iprot);
+ struct.setServerErrorIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ default:
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ iprot.readFieldEnd();
+ }
+ iprot.readStructEnd();
+
+ // check for required fields of primitive type, which can't be checked in the validate method
+ struct.validate();
+ }
+
+ public void write(org.apache.thrift.protocol.TProtocol oprot, setUserConfig_result struct) throws org.apache.thrift.TException {
+ struct.validate();
+
+ oprot.writeStructBegin(STRUCT_DESC);
+ if (struct.failure != null) {
+ oprot.writeFieldBegin(FAILURE_FIELD_DESC);
+ struct.failure.write(oprot);
+ oprot.writeFieldEnd();
+ }
+ if (struct.serverError != null) {
+ oprot.writeFieldBegin(SERVER_ERROR_FIELD_DESC);
+ struct.serverError.write(oprot);
+ oprot.writeFieldEnd();
+ }
+ oprot.writeFieldStop();
+ oprot.writeStructEnd();
+ }
+
+ }
+
+ private static class setUserConfig_resultTupleSchemeFactory implements SchemeFactory {
+ public setUserConfig_resultTupleScheme getScheme() {
+ return new setUserConfig_resultTupleScheme();
+ }
+ }
+
+ private static class setUserConfig_resultTupleScheme extends TupleScheme<setUserConfig_result> {
+
+ @Override
+ public void write(org.apache.thrift.protocol.TProtocol prot, setUserConfig_result struct) throws org.apache.thrift.TException {
+ TTupleProtocol oprot = (TTupleProtocol) prot;
+ BitSet optionals = new BitSet();
+ if (struct.isSetFailure()) {
+ optionals.set(0);
+ }
+ if (struct.isSetServerError()) {
+ optionals.set(1);
+ }
+ oprot.writeBitSet(optionals, 2);
+ if (struct.isSetFailure()) {
+ struct.failure.write(oprot);
+ }
+ if (struct.isSetServerError()) {
+ struct.serverError.write(oprot);
+ }
+ }
+
+ @Override
+ public void read(org.apache.thrift.protocol.TProtocol prot, setUserConfig_result struct) throws org.apache.thrift.TException {
+ TTupleProtocol iprot = (TTupleProtocol) prot;
+ BitSet incoming = iprot.readBitSet(2);
+ if (incoming.get(0)) {
+ struct.failure = new TAuthorizationException();
+ struct.failure.read(iprot);
+ struct.setFailureIsSet(true);
+ }
+ if (incoming.get(1)) {
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
}
@@ -19262,6 +21627,611 @@ public class SatelliteServer {
}
+ public static class getStatus_args implements org.apache.thrift.TBase<getStatus_args, getStatus_args._Fields>, java.io.Serializable, Cloneable, Comparable<getStatus_args> {
+ private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getStatus_args");
+
+
+ private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
+ static {
+ schemes.put(StandardScheme.class, new getStatus_argsStandardSchemeFactory());
+ schemes.put(TupleScheme.class, new getStatus_argsTupleSchemeFactory());
+ }
+
+
+ /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
+ public enum _Fields implements org.apache.thrift.TFieldIdEnum {
+;
+
+ private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
+
+ static {
+ for (_Fields field : EnumSet.allOf(_Fields.class)) {
+ byName.put(field.getFieldName(), field);
+ }
+ }
+
+ /**
+ * Find the _Fields constant that matches fieldId, or null if its not found.
+ */
+ public static _Fields findByThriftId(int fieldId) {
+ switch(fieldId) {
+ default:
+ return null;
+ }
+ }
+
+ /**
+ * Find the _Fields constant that matches fieldId, throwing an exception
+ * if it is not found.
+ */
+ public static _Fields findByThriftIdOrThrow(int fieldId) {
+ _Fields fields = findByThriftId(fieldId);
+ if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
+ return fields;
+ }
+
+ /**
+ * Find the _Fields constant that matches name, or null if its not found.
+ */
+ public static _Fields findByName(String name) {
+ return byName.get(name);
+ }
+
+ private final short _thriftId;
+ private final String _fieldName;
+
+ _Fields(short thriftId, String fieldName) {
+ _thriftId = thriftId;
+ _fieldName = fieldName;
+ }
+
+ public short getThriftFieldId() {
+ return _thriftId;
+ }
+
+ public String getFieldName() {
+ return _fieldName;
+ }
+ }
+ public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
+ static {
+ Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
+ metaDataMap = Collections.unmodifiableMap(tmpMap);
+ org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getStatus_args.class, metaDataMap);
+ }
+
+ public getStatus_args() {
+ }
+
+ /**
+ * Performs a deep copy on <i>other</i>.
+ */
+ public getStatus_args(getStatus_args other) {
+ }
+
+ public getStatus_args deepCopy() {
+ return new getStatus_args(this);
+ }
+
+ @Override
+ public void clear() {
+ }
+
+ public void setFieldValue(_Fields field, Object value) {
+ switch (field) {
+ }
+ }
+
+ public Object getFieldValue(_Fields field) {
+ switch (field) {
+ }
+ throw new IllegalStateException();
+ }
+
+ /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
+ public boolean isSet(_Fields field) {
+ if (field == null) {
+ throw new IllegalArgumentException();
+ }
+
+ switch (field) {
+ }
+ throw new IllegalStateException();
+ }
+
+ @Override
+ public boolean equals(Object that) {
+ if (that == null)
+ return false;
+ if (that instanceof getStatus_args)
+ return this.equals((getStatus_args)that);
+ return false;
+ }
+
+ public boolean equals(getStatus_args that) {
+ if (that == null)
+ return false;
+
+ return true;
+ }
+
+ @Override
+ public int hashCode() {
+ return 0;
+ }
+
+ @Override
+ public int compareTo(getStatus_args other) {
+ if (!getClass().equals(other.getClass())) {
+ return getClass().getName().compareTo(other.getClass().getName());
+ }
+
+ int lastComparison = 0;
+
+ return 0;
+ }
+
+ public _Fields fieldForId(int fieldId) {
+ return _Fields.findByThriftId(fieldId);
+ }
+
+ public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException {
+ schemes.get(iprot.getScheme()).getScheme().read(iprot, this);
+ }
+
+ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
+ schemes.get(oprot.getScheme()).getScheme().write(oprot, this);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder("getStatus_args(");
+ boolean first = true;
+
+ sb.append(")");
+ return sb.toString();
+ }
+
+ public void validate() throws org.apache.thrift.TException {
+ // check for required fields
+ // check for sub-struct validity
+ }
+
+ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
+ try {
+ write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out)));
+ } catch (org.apache.thrift.TException te) {
+ throw new java.io.IOException(te);
+ }
+ }
+
+ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
+ try {
+ read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
+ } catch (org.apache.thrift.TException te) {
+ throw new java.io.IOException(te);
+ }
+ }
+
+ private static class getStatus_argsStandardSchemeFactory implements SchemeFactory {
+ public getStatus_argsStandardScheme getScheme() {
+ return new getStatus_argsStandardScheme();
+ }
+ }
+
+ private static class getStatus_argsStandardScheme extends StandardScheme<getStatus_args> {
+
+ 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();
+ while (true)
+ {
+ schemeField = iprot.readFieldBegin();
+ if (schemeField.type == org.apache.thrift.protocol.TType.STOP) {
+ break;
+ }
+ switch (schemeField.id) {
+ default:
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ iprot.readFieldEnd();
+ }
+ iprot.readStructEnd();
+
+ // check for required fields of primitive type, which can't be checked in the validate method
+ struct.validate();
+ }
+
+ public void write(org.apache.thrift.protocol.TProtocol oprot, getStatus_args struct) throws org.apache.thrift.TException {
+ struct.validate();
+
+ oprot.writeStructBegin(STRUCT_DESC);
+ oprot.writeFieldStop();
+ oprot.writeStructEnd();
+ }
+
+ }
+
+ private static class getStatus_argsTupleSchemeFactory implements SchemeFactory {
+ public getStatus_argsTupleScheme getScheme() {
+ return new getStatus_argsTupleScheme();
+ }
+ }
+
+ private static class getStatus_argsTupleScheme extends TupleScheme<getStatus_args> {
+
+ @Override
+ public void write(org.apache.thrift.protocol.TProtocol prot, getStatus_args struct) throws org.apache.thrift.TException {
+ TTupleProtocol oprot = (TTupleProtocol) prot;
+ }
+
+ @Override
+ public void read(org.apache.thrift.protocol.TProtocol prot, getStatus_args struct) throws org.apache.thrift.TException {
+ TTupleProtocol iprot = (TTupleProtocol) prot;
+ }
+ }
+
+ }
+
+ public static class getStatus_result implements org.apache.thrift.TBase<getStatus_result, getStatus_result._Fields>, java.io.Serializable, Cloneable, Comparable<getStatus_result> {
+ private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getStatus_result");
+
+ private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.STRUCT, (short)0);
+
+ private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
+ static {
+ schemes.put(StandardScheme.class, new getStatus_resultStandardSchemeFactory());
+ schemes.put(TupleScheme.class, new getStatus_resultTupleSchemeFactory());
+ }
+
+ public SatelliteStatus success; // required
+
+ /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
+ public enum _Fields implements org.apache.thrift.TFieldIdEnum {
+ SUCCESS((short)0, "success");
+
+ private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
+
+ static {
+ for (_Fields field : EnumSet.allOf(_Fields.class)) {
+ byName.put(field.getFieldName(), field);
+ }
+ }
+
+ /**
+ * Find the _Fields constant that matches fieldId, or null if its not found.
+ */
+ public static _Fields findByThriftId(int fieldId) {
+ switch(fieldId) {
+ case 0: // SUCCESS
+ return SUCCESS;
+ default:
+ return null;
+ }
+ }
+
+ /**
+ * Find the _Fields constant that matches fieldId, throwing an exception
+ * if it is not found.
+ */
+ public static _Fields findByThriftIdOrThrow(int fieldId) {
+ _Fields fields = findByThriftId(fieldId);
+ if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
+ return fields;
+ }
+
+ /**
+ * Find the _Fields constant that matches name, or null if its not found.
+ */
+ public static _Fields findByName(String name) {
+ return byName.get(name);
+ }
+
+ private final short _thriftId;
+ private final String _fieldName;
+
+ _Fields(short thriftId, String fieldName) {
+ _thriftId = thriftId;
+ _fieldName = fieldName;
+ }
+
+ public short getThriftFieldId() {
+ return _thriftId;
+ }
+
+ public String getFieldName() {
+ return _fieldName;
+ }
+ }
+
+ // isset id assignments
+ public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
+ static {
+ Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
+ tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, SatelliteStatus.class)));
+ metaDataMap = Collections.unmodifiableMap(tmpMap);
+ org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getStatus_result.class, metaDataMap);
+ }
+
+ public getStatus_result() {
+ }
+
+ public getStatus_result(
+ SatelliteStatus success)
+ {
+ this();
+ this.success = success;
+ }
+
+ /**
+ * Performs a deep copy on <i>other</i>.
+ */
+ public getStatus_result(getStatus_result other) {
+ if (other.isSetSuccess()) {
+ this.success = new SatelliteStatus(other.success);
+ }
+ }
+
+ public getStatus_result deepCopy() {
+ return new getStatus_result(this);
+ }
+
+ @Override
+ public void clear() {
+ this.success = null;
+ }
+
+ public SatelliteStatus getSuccess() {
+ return this.success;
+ }
+
+ public getStatus_result setSuccess(SatelliteStatus success) {
+ this.success = success;
+ return this;
+ }
+
+ public void unsetSuccess() {
+ this.success = null;
+ }
+
+ /** Returns true if field success is set (has been assigned a value) and false otherwise */
+ public boolean isSetSuccess() {
+ return this.success != null;
+ }
+
+ public void setSuccessIsSet(boolean value) {
+ if (!value) {
+ this.success = null;
+ }
+ }
+
+ public void setFieldValue(_Fields field, Object value) {
+ switch (field) {
+ case SUCCESS:
+ if (value == null) {
+ unsetSuccess();
+ } else {
+ setSuccess((SatelliteStatus)value);
+ }
+ break;
+
+ }
+ }
+
+ public Object getFieldValue(_Fields field) {
+ switch (field) {
+ case SUCCESS:
+ return getSuccess();
+
+ }
+ throw new IllegalStateException();
+ }
+
+ /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
+ public boolean isSet(_Fields field) {
+ if (field == null) {
+ throw new IllegalArgumentException();
+ }
+
+ switch (field) {
+ case SUCCESS:
+ return isSetSuccess();
+ }
+ throw new IllegalStateException();
+ }
+
+ @Override
+ public boolean equals(Object that) {
+ if (that == null)
+ return false;
+ if (that instanceof getStatus_result)
+ return this.equals((getStatus_result)that);
+ return false;
+ }
+
+ public boolean equals(getStatus_result that) {
+ if (that == null)
+ return false;
+
+ boolean this_present_success = true && this.isSetSuccess();
+ boolean that_present_success = true && that.isSetSuccess();
+ if (this_present_success || that_present_success) {
+ if (!(this_present_success && that_present_success))
+ return false;
+ if (!this.success.equals(that.success))
+ return false;
+ }
+
+ return true;
+ }
+
+ @Override
+ public int hashCode() {
+ return 0;
+ }
+
+ @Override
+ public int compareTo(getStatus_result other) {
+ if (!getClass().equals(other.getClass())) {
+ return getClass().getName().compareTo(other.getClass().getName());
+ }
+
+ int lastComparison = 0;
+
+ lastComparison = Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetSuccess()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.success, other.success);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
+ return 0;
+ }
+
+ public _Fields fieldForId(int fieldId) {
+ return _Fields.findByThriftId(fieldId);
+ }
+
+ public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException {
+ schemes.get(iprot.getScheme()).getScheme().read(iprot, this);
+ }
+
+ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
+ schemes.get(oprot.getScheme()).getScheme().write(oprot, this);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder("getStatus_result(");
+ boolean first = true;
+
+ sb.append("success:");
+ if (this.success == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.success);
+ }
+ first = false;
+ sb.append(")");
+ return sb.toString();
+ }
+
+ public void validate() throws org.apache.thrift.TException {
+ // check for required fields
+ // check for sub-struct validity
+ if (success != null) {
+ success.validate();
+ }
+ }
+
+ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
+ try {
+ write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out)));
+ } catch (org.apache.thrift.TException te) {
+ throw new java.io.IOException(te);
+ }
+ }
+
+ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
+ try {
+ read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
+ } catch (org.apache.thrift.TException te) {
+ throw new java.io.IOException(te);
+ }
+ }
+
+ private static class getStatus_resultStandardSchemeFactory implements SchemeFactory {
+ public getStatus_resultStandardScheme getScheme() {
+ return new getStatus_resultStandardScheme();
+ }
+ }
+
+ private static class getStatus_resultStandardScheme extends StandardScheme<getStatus_result> {
+
+ 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();
+ while (true)
+ {
+ schemeField = iprot.readFieldBegin();
+ if (schemeField.type == org.apache.thrift.protocol.TType.STOP) {
+ break;
+ }
+ switch (schemeField.id) {
+ case 0: // SUCCESS
+ if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
+ struct.success = new SatelliteStatus();
+ struct.success.read(iprot);
+ struct.setSuccessIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ default:
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ iprot.readFieldEnd();
+ }
+ iprot.readStructEnd();
+
+ // check for required fields of primitive type, which can't be checked in the validate method
+ struct.validate();
+ }
+
+ public void write(org.apache.thrift.protocol.TProtocol oprot, getStatus_result struct) throws org.apache.thrift.TException {
+ struct.validate();
+
+ oprot.writeStructBegin(STRUCT_DESC);
+ if (struct.success != null) {
+ oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
+ struct.success.write(oprot);
+ oprot.writeFieldEnd();
+ }
+ oprot.writeFieldStop();
+ oprot.writeStructEnd();
+ }
+
+ }
+
+ private static class getStatus_resultTupleSchemeFactory implements SchemeFactory {
+ public getStatus_resultTupleScheme getScheme() {
+ return new getStatus_resultTupleScheme();
+ }
+ }
+
+ private static class getStatus_resultTupleScheme extends TupleScheme<getStatus_result> {
+
+ @Override
+ public void write(org.apache.thrift.protocol.TProtocol prot, getStatus_result struct) throws org.apache.thrift.TException {
+ TTupleProtocol oprot = (TTupleProtocol) prot;
+ BitSet optionals = new BitSet();
+ if (struct.isSetSuccess()) {
+ optionals.set(0);
+ }
+ oprot.writeBitSet(optionals, 1);
+ if (struct.isSetSuccess()) {
+ struct.success.write(oprot);
+ }
+ }
+
+ @Override
+ public void read(org.apache.thrift.protocol.TProtocol prot, getStatus_result struct) throws org.apache.thrift.TException {
+ TTupleProtocol iprot = (TTupleProtocol) prot;
+ BitSet incoming = iprot.readBitSet(1);
+ if (incoming.get(0)) {
+ struct.success = new SatelliteStatus();
+ struct.success.read(iprot);
+ struct.setSuccessIsSet(true);
+ }
+ }
+ }
+
+ }
+
public static class getImageList_args implements org.apache.thrift.TBase<getImageList_args, getImageList_args._Fields>, java.io.Serializable, Cloneable, Comparable<getImageList_args> {
private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getImageList_args");
@@ -19878,7 +22848,7 @@ public class SatelliteServer {
public List<ImageSummaryRead> success; // required
public TAuthorizationException authError; // required
- public TInternalServerError serverError; // required
+ public TInvocationException serverError; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
@@ -19965,7 +22935,7 @@ public class SatelliteServer {
public getImageList_result(
List<ImageSummaryRead> success,
TAuthorizationException authError,
- TInternalServerError serverError)
+ TInvocationException serverError)
{
this();
this.success = success;
@@ -19988,7 +22958,7 @@ public class SatelliteServer {
this.authError = new TAuthorizationException(other.authError);
}
if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ this.serverError = new TInvocationException(other.serverError);
}
}
@@ -20066,11 +23036,11 @@ public class SatelliteServer {
}
}
- public TInternalServerError getServerError() {
+ public TInvocationException getServerError() {
return this.serverError;
}
- public getImageList_result setServerError(TInternalServerError serverError) {
+ public getImageList_result setServerError(TInvocationException serverError) {
this.serverError = serverError;
return this;
}
@@ -20112,7 +23082,7 @@ public class SatelliteServer {
if (value == null) {
unsetServerError();
} else {
- setServerError((TInternalServerError)value);
+ setServerError((TInvocationException)value);
}
break;
@@ -20353,7 +23323,7 @@ public class SatelliteServer {
break;
case 2: // SERVER_ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
} else {
@@ -20466,7 +23436,7 @@ public class SatelliteServer {
struct.setAuthErrorIsSet(true);
}
if (incoming.get(2)) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
}
@@ -20946,7 +23916,7 @@ public class SatelliteServer {
public ImageDetailsRead success; // required
public TAuthorizationException authError; // required
public TNotFoundException notFound; // required
- public TInternalServerError serverError; // required
+ public TInvocationException serverError; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
@@ -21038,7 +24008,7 @@ public class SatelliteServer {
ImageDetailsRead success,
TAuthorizationException authError,
TNotFoundException notFound,
- TInternalServerError serverError)
+ TInvocationException serverError)
{
this();
this.success = success;
@@ -21061,7 +24031,7 @@ public class SatelliteServer {
this.notFound = new TNotFoundException(other.notFound);
}
if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ this.serverError = new TInvocationException(other.serverError);
}
}
@@ -21149,11 +24119,11 @@ public class SatelliteServer {
}
}
- public TInternalServerError getServerError() {
+ public TInvocationException getServerError() {
return this.serverError;
}
- public getImageDetails_result setServerError(TInternalServerError serverError) {
+ public getImageDetails_result setServerError(TInvocationException serverError) {
this.serverError = serverError;
return this;
}
@@ -21203,7 +24173,7 @@ public class SatelliteServer {
if (value == null) {
unsetServerError();
} else {
- setServerError((TInternalServerError)value);
+ setServerError((TInvocationException)value);
}
break;
@@ -21478,7 +24448,7 @@ public class SatelliteServer {
break;
case 3: // SERVER_ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
} else {
@@ -21585,7 +24555,7 @@ public class SatelliteServer {
struct.setNotFoundIsSet(true);
}
if (incoming.get(3)) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
}
@@ -22053,8 +25023,7 @@ public class SatelliteServer {
private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.STRING, (short)0);
private static final org.apache.thrift.protocol.TField AUTH_ERROR_FIELD_DESC = new org.apache.thrift.protocol.TField("authError", org.apache.thrift.protocol.TType.STRUCT, (short)1);
- private static final org.apache.thrift.protocol.TField IMG_ERROR_FIELD_DESC = new org.apache.thrift.protocol.TField("imgError", org.apache.thrift.protocol.TType.STRUCT, (short)2);
- private static final org.apache.thrift.protocol.TField SERVER_ERROR_FIELD_DESC = new org.apache.thrift.protocol.TField("serverError", org.apache.thrift.protocol.TType.STRUCT, (short)3);
+ private static final org.apache.thrift.protocol.TField ERROR_FIELD_DESC = new org.apache.thrift.protocol.TField("error", org.apache.thrift.protocol.TType.STRUCT, (short)2);
private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
static {
@@ -22064,15 +25033,13 @@ public class SatelliteServer {
public String success; // required
public TAuthorizationException authError; // required
- public TImageDataException imgError; // required
- public TInternalServerError serverError; // required
+ public TInvocationException error; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
SUCCESS((short)0, "success"),
AUTH_ERROR((short)1, "authError"),
- IMG_ERROR((short)2, "imgError"),
- SERVER_ERROR((short)3, "serverError");
+ ERROR((short)2, "error");
private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
@@ -22091,10 +25058,8 @@ public class SatelliteServer {
return SUCCESS;
case 1: // AUTH_ERROR
return AUTH_ERROR;
- case 2: // IMG_ERROR
- return IMG_ERROR;
- case 3: // SERVER_ERROR
- return SERVER_ERROR;
+ case 2: // ERROR
+ return ERROR;
default:
return null;
}
@@ -22142,9 +25107,7 @@ public class SatelliteServer {
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "UUID")));
tmpMap.put(_Fields.AUTH_ERROR, new org.apache.thrift.meta_data.FieldMetaData("authError", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
- tmpMap.put(_Fields.IMG_ERROR, new org.apache.thrift.meta_data.FieldMetaData("imgError", org.apache.thrift.TFieldRequirementType.DEFAULT,
- new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
- tmpMap.put(_Fields.SERVER_ERROR, new org.apache.thrift.meta_data.FieldMetaData("serverError", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ tmpMap.put(_Fields.ERROR, new org.apache.thrift.meta_data.FieldMetaData("error", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(createImage_result.class, metaDataMap);
@@ -22156,14 +25119,12 @@ public class SatelliteServer {
public createImage_result(
String success,
TAuthorizationException authError,
- TImageDataException imgError,
- TInternalServerError serverError)
+ TInvocationException error)
{
this();
this.success = success;
this.authError = authError;
- this.imgError = imgError;
- this.serverError = serverError;
+ this.error = error;
}
/**
@@ -22176,11 +25137,8 @@ public class SatelliteServer {
if (other.isSetAuthError()) {
this.authError = new TAuthorizationException(other.authError);
}
- if (other.isSetImgError()) {
- this.imgError = new TImageDataException(other.imgError);
- }
- if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ if (other.isSetError()) {
+ this.error = new TInvocationException(other.error);
}
}
@@ -22192,8 +25150,7 @@ public class SatelliteServer {
public void clear() {
this.success = null;
this.authError = null;
- this.imgError = null;
- this.serverError = null;
+ this.error = null;
}
public String getSuccess() {
@@ -22244,51 +25201,27 @@ public class SatelliteServer {
}
}
- public TImageDataException getImgError() {
- return this.imgError;
+ public TInvocationException getError() {
+ return this.error;
}
- public createImage_result setImgError(TImageDataException imgError) {
- this.imgError = imgError;
+ public createImage_result setError(TInvocationException error) {
+ this.error = error;
return this;
}
- public void unsetImgError() {
- this.imgError = null;
+ public void unsetError() {
+ this.error = null;
}
- /** Returns true if field imgError is set (has been assigned a value) and false otherwise */
- public boolean isSetImgError() {
- return this.imgError != null;
+ /** Returns true if field error is set (has been assigned a value) and false otherwise */
+ public boolean isSetError() {
+ return this.error != null;
}
- public void setImgErrorIsSet(boolean value) {
+ public void setErrorIsSet(boolean value) {
if (!value) {
- this.imgError = null;
- }
- }
-
- public TInternalServerError getServerError() {
- return this.serverError;
- }
-
- public createImage_result setServerError(TInternalServerError serverError) {
- this.serverError = serverError;
- return this;
- }
-
- public void unsetServerError() {
- this.serverError = null;
- }
-
- /** Returns true if field serverError is set (has been assigned a value) and false otherwise */
- public boolean isSetServerError() {
- return this.serverError != null;
- }
-
- public void setServerErrorIsSet(boolean value) {
- if (!value) {
- this.serverError = null;
+ this.error = null;
}
}
@@ -22310,19 +25243,11 @@ public class SatelliteServer {
}
break;
- case IMG_ERROR:
+ case ERROR:
if (value == null) {
- unsetImgError();
- } else {
- setImgError((TImageDataException)value);
- }
- break;
-
- case SERVER_ERROR:
- if (value == null) {
- unsetServerError();
+ unsetError();
} else {
- setServerError((TInternalServerError)value);
+ setError((TInvocationException)value);
}
break;
@@ -22337,11 +25262,8 @@ public class SatelliteServer {
case AUTH_ERROR:
return getAuthError();
- case IMG_ERROR:
- return getImgError();
-
- case SERVER_ERROR:
- return getServerError();
+ case ERROR:
+ return getError();
}
throw new IllegalStateException();
@@ -22358,10 +25280,8 @@ public class SatelliteServer {
return isSetSuccess();
case AUTH_ERROR:
return isSetAuthError();
- case IMG_ERROR:
- return isSetImgError();
- case SERVER_ERROR:
- return isSetServerError();
+ case ERROR:
+ return isSetError();
}
throw new IllegalStateException();
}
@@ -22397,21 +25317,12 @@ public class SatelliteServer {
return false;
}
- boolean this_present_imgError = true && this.isSetImgError();
- boolean that_present_imgError = true && that.isSetImgError();
- if (this_present_imgError || that_present_imgError) {
- if (!(this_present_imgError && that_present_imgError))
- return false;
- if (!this.imgError.equals(that.imgError))
+ boolean this_present_error = true && this.isSetError();
+ boolean that_present_error = true && that.isSetError();
+ if (this_present_error || that_present_error) {
+ if (!(this_present_error && that_present_error))
return false;
- }
-
- boolean this_present_serverError = true && this.isSetServerError();
- boolean that_present_serverError = true && that.isSetServerError();
- if (this_present_serverError || that_present_serverError) {
- if (!(this_present_serverError && that_present_serverError))
- return false;
- if (!this.serverError.equals(that.serverError))
+ if (!this.error.equals(that.error))
return false;
}
@@ -22451,22 +25362,12 @@ public class SatelliteServer {
return lastComparison;
}
}
- lastComparison = Boolean.valueOf(isSetImgError()).compareTo(other.isSetImgError());
+ lastComparison = Boolean.valueOf(isSetError()).compareTo(other.isSetError());
if (lastComparison != 0) {
return lastComparison;
}
- if (isSetImgError()) {
- lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.imgError, other.imgError);
- if (lastComparison != 0) {
- return lastComparison;
- }
- }
- lastComparison = Boolean.valueOf(isSetServerError()).compareTo(other.isSetServerError());
- if (lastComparison != 0) {
- return lastComparison;
- }
- if (isSetServerError()) {
- lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.serverError, other.serverError);
+ if (isSetError()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.error, other.error);
if (lastComparison != 0) {
return lastComparison;
}
@@ -22507,19 +25408,11 @@ public class SatelliteServer {
}
first = false;
if (!first) sb.append(", ");
- sb.append("imgError:");
- if (this.imgError == null) {
+ sb.append("error:");
+ if (this.error == null) {
sb.append("null");
} else {
- sb.append(this.imgError);
- }
- first = false;
- if (!first) sb.append(", ");
- sb.append("serverError:");
- if (this.serverError == null) {
- sb.append("null");
- } else {
- sb.append(this.serverError);
+ sb.append(this.error);
}
first = false;
sb.append(")");
@@ -22582,20 +25475,11 @@ public class SatelliteServer {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
- case 2: // IMG_ERROR
- if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.imgError = new TImageDataException();
- struct.imgError.read(iprot);
- struct.setImgErrorIsSet(true);
- } else {
- org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
- }
- break;
- case 3: // SERVER_ERROR
+ case 2: // ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
- struct.serverError.read(iprot);
- struct.setServerErrorIsSet(true);
+ struct.error = new TInvocationException();
+ struct.error.read(iprot);
+ struct.setErrorIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
@@ -22625,14 +25509,9 @@ public class SatelliteServer {
struct.authError.write(oprot);
oprot.writeFieldEnd();
}
- if (struct.imgError != null) {
- oprot.writeFieldBegin(IMG_ERROR_FIELD_DESC);
- struct.imgError.write(oprot);
- oprot.writeFieldEnd();
- }
- if (struct.serverError != null) {
- oprot.writeFieldBegin(SERVER_ERROR_FIELD_DESC);
- struct.serverError.write(oprot);
+ if (struct.error != null) {
+ oprot.writeFieldBegin(ERROR_FIELD_DESC);
+ struct.error.write(oprot);
oprot.writeFieldEnd();
}
oprot.writeFieldStop();
@@ -22659,31 +25538,25 @@ public class SatelliteServer {
if (struct.isSetAuthError()) {
optionals.set(1);
}
- if (struct.isSetImgError()) {
+ if (struct.isSetError()) {
optionals.set(2);
}
- if (struct.isSetServerError()) {
- optionals.set(3);
- }
- oprot.writeBitSet(optionals, 4);
+ oprot.writeBitSet(optionals, 3);
if (struct.isSetSuccess()) {
oprot.writeString(struct.success);
}
if (struct.isSetAuthError()) {
struct.authError.write(oprot);
}
- if (struct.isSetImgError()) {
- struct.imgError.write(oprot);
- }
- if (struct.isSetServerError()) {
- struct.serverError.write(oprot);
+ if (struct.isSetError()) {
+ struct.error.write(oprot);
}
}
@Override
public void read(org.apache.thrift.protocol.TProtocol prot, createImage_result struct) throws org.apache.thrift.TException {
TTupleProtocol iprot = (TTupleProtocol) prot;
- BitSet incoming = iprot.readBitSet(4);
+ BitSet incoming = iprot.readBitSet(3);
if (incoming.get(0)) {
struct.success = iprot.readString();
struct.setSuccessIsSet(true);
@@ -22694,14 +25567,9 @@ public class SatelliteServer {
struct.setAuthErrorIsSet(true);
}
if (incoming.get(2)) {
- struct.imgError = new TImageDataException();
- struct.imgError.read(iprot);
- struct.setImgErrorIsSet(true);
- }
- if (incoming.get(3)) {
- struct.serverError = new TInternalServerError();
- struct.serverError.read(iprot);
- struct.setServerErrorIsSet(true);
+ struct.error = new TInvocationException();
+ struct.error.read(iprot);
+ struct.setErrorIsSet(true);
}
}
}
@@ -23273,7 +26141,6 @@ public class SatelliteServer {
private static final org.apache.thrift.protocol.TField AUTH_ERROR_FIELD_DESC = new org.apache.thrift.protocol.TField("authError", org.apache.thrift.protocol.TType.STRUCT, (short)1);
private static final org.apache.thrift.protocol.TField NOT_FOUND_FIELD_DESC = new org.apache.thrift.protocol.TField("notFound", org.apache.thrift.protocol.TType.STRUCT, (short)2);
private static final org.apache.thrift.protocol.TField IMG_ERROR_FIELD_DESC = new org.apache.thrift.protocol.TField("imgError", org.apache.thrift.protocol.TType.STRUCT, (short)3);
- private static final org.apache.thrift.protocol.TField SERVER_ERROR_FIELD_DESC = new org.apache.thrift.protocol.TField("serverError", org.apache.thrift.protocol.TType.STRUCT, (short)4);
private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
static {
@@ -23283,15 +26150,13 @@ public class SatelliteServer {
public TAuthorizationException authError; // required
public TNotFoundException notFound; // required
- public TImageDataException imgError; // required
- public TInternalServerError serverError; // required
+ public TInvocationException imgError; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
AUTH_ERROR((short)1, "authError"),
NOT_FOUND((short)2, "notFound"),
- IMG_ERROR((short)3, "imgError"),
- SERVER_ERROR((short)4, "serverError");
+ IMG_ERROR((short)3, "imgError");
private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
@@ -23312,8 +26177,6 @@ public class SatelliteServer {
return NOT_FOUND;
case 3: // IMG_ERROR
return IMG_ERROR;
- case 4: // SERVER_ERROR
- return SERVER_ERROR;
default:
return null;
}
@@ -23363,8 +26226,6 @@ public class SatelliteServer {
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
tmpMap.put(_Fields.IMG_ERROR, new org.apache.thrift.meta_data.FieldMetaData("imgError", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
- tmpMap.put(_Fields.SERVER_ERROR, new org.apache.thrift.meta_data.FieldMetaData("serverError", org.apache.thrift.TFieldRequirementType.DEFAULT,
- new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(updateImageBase_result.class, metaDataMap);
}
@@ -23375,14 +26236,12 @@ public class SatelliteServer {
public updateImageBase_result(
TAuthorizationException authError,
TNotFoundException notFound,
- TImageDataException imgError,
- TInternalServerError serverError)
+ TInvocationException imgError)
{
this();
this.authError = authError;
this.notFound = notFound;
this.imgError = imgError;
- this.serverError = serverError;
}
/**
@@ -23396,10 +26255,7 @@ public class SatelliteServer {
this.notFound = new TNotFoundException(other.notFound);
}
if (other.isSetImgError()) {
- this.imgError = new TImageDataException(other.imgError);
- }
- if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ this.imgError = new TInvocationException(other.imgError);
}
}
@@ -23412,7 +26268,6 @@ public class SatelliteServer {
this.authError = null;
this.notFound = null;
this.imgError = null;
- this.serverError = null;
}
public TAuthorizationException getAuthError() {
@@ -23463,11 +26318,11 @@ public class SatelliteServer {
}
}
- public TImageDataException getImgError() {
+ public TInvocationException getImgError() {
return this.imgError;
}
- public updateImageBase_result setImgError(TImageDataException imgError) {
+ public updateImageBase_result setImgError(TInvocationException imgError) {
this.imgError = imgError;
return this;
}
@@ -23487,30 +26342,6 @@ public class SatelliteServer {
}
}
- public TInternalServerError getServerError() {
- return this.serverError;
- }
-
- public updateImageBase_result setServerError(TInternalServerError serverError) {
- this.serverError = serverError;
- return this;
- }
-
- public void unsetServerError() {
- this.serverError = null;
- }
-
- /** Returns true if field serverError is set (has been assigned a value) and false otherwise */
- public boolean isSetServerError() {
- return this.serverError != null;
- }
-
- public void setServerErrorIsSet(boolean value) {
- if (!value) {
- this.serverError = null;
- }
- }
-
public void setFieldValue(_Fields field, Object value) {
switch (field) {
case AUTH_ERROR:
@@ -23533,15 +26364,7 @@ public class SatelliteServer {
if (value == null) {
unsetImgError();
} else {
- setImgError((TImageDataException)value);
- }
- break;
-
- case SERVER_ERROR:
- if (value == null) {
- unsetServerError();
- } else {
- setServerError((TInternalServerError)value);
+ setImgError((TInvocationException)value);
}
break;
@@ -23559,9 +26382,6 @@ public class SatelliteServer {
case IMG_ERROR:
return getImgError();
- case SERVER_ERROR:
- return getServerError();
-
}
throw new IllegalStateException();
}
@@ -23579,8 +26399,6 @@ public class SatelliteServer {
return isSetNotFound();
case IMG_ERROR:
return isSetImgError();
- case SERVER_ERROR:
- return isSetServerError();
}
throw new IllegalStateException();
}
@@ -23625,15 +26443,6 @@ public class SatelliteServer {
return false;
}
- boolean this_present_serverError = true && this.isSetServerError();
- boolean that_present_serverError = true && that.isSetServerError();
- if (this_present_serverError || that_present_serverError) {
- if (!(this_present_serverError && that_present_serverError))
- return false;
- if (!this.serverError.equals(that.serverError))
- return false;
- }
-
return true;
}
@@ -23680,16 +26489,6 @@ public class SatelliteServer {
return lastComparison;
}
}
- lastComparison = Boolean.valueOf(isSetServerError()).compareTo(other.isSetServerError());
- if (lastComparison != 0) {
- return lastComparison;
- }
- if (isSetServerError()) {
- lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.serverError, other.serverError);
- if (lastComparison != 0) {
- return lastComparison;
- }
- }
return 0;
}
@@ -23733,14 +26532,6 @@ public class SatelliteServer {
sb.append(this.imgError);
}
first = false;
- if (!first) sb.append(", ");
- sb.append("serverError:");
- if (this.serverError == null) {
- sb.append("null");
- } else {
- sb.append(this.serverError);
- }
- first = false;
sb.append(")");
return sb.toString();
}
@@ -23804,22 +26595,13 @@ public class SatelliteServer {
break;
case 3: // IMG_ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.imgError = new TImageDataException();
+ struct.imgError = new TInvocationException();
struct.imgError.read(iprot);
struct.setImgErrorIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
- case 4: // SERVER_ERROR
- if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
- struct.serverError.read(iprot);
- struct.setServerErrorIsSet(true);
- } else {
- org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
- }
- break;
default:
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
@@ -23850,11 +26632,6 @@ public class SatelliteServer {
struct.imgError.write(oprot);
oprot.writeFieldEnd();
}
- if (struct.serverError != null) {
- oprot.writeFieldBegin(SERVER_ERROR_FIELD_DESC);
- struct.serverError.write(oprot);
- oprot.writeFieldEnd();
- }
oprot.writeFieldStop();
oprot.writeStructEnd();
}
@@ -23882,10 +26659,7 @@ public class SatelliteServer {
if (struct.isSetImgError()) {
optionals.set(2);
}
- if (struct.isSetServerError()) {
- optionals.set(3);
- }
- oprot.writeBitSet(optionals, 4);
+ oprot.writeBitSet(optionals, 3);
if (struct.isSetAuthError()) {
struct.authError.write(oprot);
}
@@ -23895,15 +26669,12 @@ public class SatelliteServer {
if (struct.isSetImgError()) {
struct.imgError.write(oprot);
}
- if (struct.isSetServerError()) {
- struct.serverError.write(oprot);
- }
}
@Override
public void read(org.apache.thrift.protocol.TProtocol prot, updateImageBase_result struct) throws org.apache.thrift.TException {
TTupleProtocol iprot = (TTupleProtocol) prot;
- BitSet incoming = iprot.readBitSet(4);
+ BitSet incoming = iprot.readBitSet(3);
if (incoming.get(0)) {
struct.authError = new TAuthorizationException();
struct.authError.read(iprot);
@@ -23915,15 +26686,10 @@ public class SatelliteServer {
struct.setNotFoundIsSet(true);
}
if (incoming.get(2)) {
- struct.imgError = new TImageDataException();
+ struct.imgError = new TInvocationException();
struct.imgError.read(iprot);
struct.setImgErrorIsSet(true);
}
- if (incoming.get(3)) {
- struct.serverError = new TInternalServerError();
- struct.serverError.read(iprot);
- struct.setServerErrorIsSet(true);
- }
}
}
@@ -24494,7 +27260,6 @@ public class SatelliteServer {
private static final org.apache.thrift.protocol.TField AUTH_ERROR_FIELD_DESC = new org.apache.thrift.protocol.TField("authError", org.apache.thrift.protocol.TType.STRUCT, (short)1);
private static final org.apache.thrift.protocol.TField NOT_FOUND_FIELD_DESC = new org.apache.thrift.protocol.TField("notFound", org.apache.thrift.protocol.TType.STRUCT, (short)2);
private static final org.apache.thrift.protocol.TField IMG_ERROR_FIELD_DESC = new org.apache.thrift.protocol.TField("imgError", org.apache.thrift.protocol.TType.STRUCT, (short)3);
- private static final org.apache.thrift.protocol.TField SERVER_ERROR_FIELD_DESC = new org.apache.thrift.protocol.TField("serverError", org.apache.thrift.protocol.TType.STRUCT, (short)4);
private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
static {
@@ -24504,15 +27269,13 @@ public class SatelliteServer {
public TAuthorizationException authError; // required
public TNotFoundException notFound; // required
- public TImageDataException imgError; // required
- public TInternalServerError serverError; // required
+ public TInvocationException imgError; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
AUTH_ERROR((short)1, "authError"),
NOT_FOUND((short)2, "notFound"),
- IMG_ERROR((short)3, "imgError"),
- SERVER_ERROR((short)4, "serverError");
+ IMG_ERROR((short)3, "imgError");
private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
@@ -24533,8 +27296,6 @@ public class SatelliteServer {
return NOT_FOUND;
case 3: // IMG_ERROR
return IMG_ERROR;
- case 4: // SERVER_ERROR
- return SERVER_ERROR;
default:
return null;
}
@@ -24584,8 +27345,6 @@ public class SatelliteServer {
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
tmpMap.put(_Fields.IMG_ERROR, new org.apache.thrift.meta_data.FieldMetaData("imgError", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
- tmpMap.put(_Fields.SERVER_ERROR, new org.apache.thrift.meta_data.FieldMetaData("serverError", org.apache.thrift.TFieldRequirementType.DEFAULT,
- new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(updateImageVersion_result.class, metaDataMap);
}
@@ -24596,14 +27355,12 @@ public class SatelliteServer {
public updateImageVersion_result(
TAuthorizationException authError,
TNotFoundException notFound,
- TImageDataException imgError,
- TInternalServerError serverError)
+ TInvocationException imgError)
{
this();
this.authError = authError;
this.notFound = notFound;
this.imgError = imgError;
- this.serverError = serverError;
}
/**
@@ -24617,10 +27374,7 @@ public class SatelliteServer {
this.notFound = new TNotFoundException(other.notFound);
}
if (other.isSetImgError()) {
- this.imgError = new TImageDataException(other.imgError);
- }
- if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ this.imgError = new TInvocationException(other.imgError);
}
}
@@ -24633,7 +27387,6 @@ public class SatelliteServer {
this.authError = null;
this.notFound = null;
this.imgError = null;
- this.serverError = null;
}
public TAuthorizationException getAuthError() {
@@ -24684,11 +27437,11 @@ public class SatelliteServer {
}
}
- public TImageDataException getImgError() {
+ public TInvocationException getImgError() {
return this.imgError;
}
- public updateImageVersion_result setImgError(TImageDataException imgError) {
+ public updateImageVersion_result setImgError(TInvocationException imgError) {
this.imgError = imgError;
return this;
}
@@ -24708,30 +27461,6 @@ public class SatelliteServer {
}
}
- public TInternalServerError getServerError() {
- return this.serverError;
- }
-
- public updateImageVersion_result setServerError(TInternalServerError serverError) {
- this.serverError = serverError;
- return this;
- }
-
- public void unsetServerError() {
- this.serverError = null;
- }
-
- /** Returns true if field serverError is set (has been assigned a value) and false otherwise */
- public boolean isSetServerError() {
- return this.serverError != null;
- }
-
- public void setServerErrorIsSet(boolean value) {
- if (!value) {
- this.serverError = null;
- }
- }
-
public void setFieldValue(_Fields field, Object value) {
switch (field) {
case AUTH_ERROR:
@@ -24754,15 +27483,7 @@ public class SatelliteServer {
if (value == null) {
unsetImgError();
} else {
- setImgError((TImageDataException)value);
- }
- break;
-
- case SERVER_ERROR:
- if (value == null) {
- unsetServerError();
- } else {
- setServerError((TInternalServerError)value);
+ setImgError((TInvocationException)value);
}
break;
@@ -24780,9 +27501,6 @@ public class SatelliteServer {
case IMG_ERROR:
return getImgError();
- case SERVER_ERROR:
- return getServerError();
-
}
throw new IllegalStateException();
}
@@ -24800,8 +27518,6 @@ public class SatelliteServer {
return isSetNotFound();
case IMG_ERROR:
return isSetImgError();
- case SERVER_ERROR:
- return isSetServerError();
}
throw new IllegalStateException();
}
@@ -24846,15 +27562,6 @@ public class SatelliteServer {
return false;
}
- boolean this_present_serverError = true && this.isSetServerError();
- boolean that_present_serverError = true && that.isSetServerError();
- if (this_present_serverError || that_present_serverError) {
- if (!(this_present_serverError && that_present_serverError))
- return false;
- if (!this.serverError.equals(that.serverError))
- return false;
- }
-
return true;
}
@@ -24901,16 +27608,6 @@ public class SatelliteServer {
return lastComparison;
}
}
- lastComparison = Boolean.valueOf(isSetServerError()).compareTo(other.isSetServerError());
- if (lastComparison != 0) {
- return lastComparison;
- }
- if (isSetServerError()) {
- lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.serverError, other.serverError);
- if (lastComparison != 0) {
- return lastComparison;
- }
- }
return 0;
}
@@ -24954,14 +27651,6 @@ public class SatelliteServer {
sb.append(this.imgError);
}
first = false;
- if (!first) sb.append(", ");
- sb.append("serverError:");
- if (this.serverError == null) {
- sb.append("null");
- } else {
- sb.append(this.serverError);
- }
- first = false;
sb.append(")");
return sb.toString();
}
@@ -25025,22 +27714,13 @@ public class SatelliteServer {
break;
case 3: // IMG_ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.imgError = new TImageDataException();
+ struct.imgError = new TInvocationException();
struct.imgError.read(iprot);
struct.setImgErrorIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
- case 4: // SERVER_ERROR
- if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
- struct.serverError.read(iprot);
- struct.setServerErrorIsSet(true);
- } else {
- org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
- }
- break;
default:
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
@@ -25071,11 +27751,6 @@ public class SatelliteServer {
struct.imgError.write(oprot);
oprot.writeFieldEnd();
}
- if (struct.serverError != null) {
- oprot.writeFieldBegin(SERVER_ERROR_FIELD_DESC);
- struct.serverError.write(oprot);
- oprot.writeFieldEnd();
- }
oprot.writeFieldStop();
oprot.writeStructEnd();
}
@@ -25103,10 +27778,7 @@ public class SatelliteServer {
if (struct.isSetImgError()) {
optionals.set(2);
}
- if (struct.isSetServerError()) {
- optionals.set(3);
- }
- oprot.writeBitSet(optionals, 4);
+ oprot.writeBitSet(optionals, 3);
if (struct.isSetAuthError()) {
struct.authError.write(oprot);
}
@@ -25116,15 +27788,12 @@ public class SatelliteServer {
if (struct.isSetImgError()) {
struct.imgError.write(oprot);
}
- if (struct.isSetServerError()) {
- struct.serverError.write(oprot);
- }
}
@Override
public void read(org.apache.thrift.protocol.TProtocol prot, updateImageVersion_result struct) throws org.apache.thrift.TException {
TTupleProtocol iprot = (TTupleProtocol) prot;
- BitSet incoming = iprot.readBitSet(4);
+ BitSet incoming = iprot.readBitSet(3);
if (incoming.get(0)) {
struct.authError = new TAuthorizationException();
struct.authError.read(iprot);
@@ -25136,15 +27805,10 @@ public class SatelliteServer {
struct.setNotFoundIsSet(true);
}
if (incoming.get(2)) {
- struct.imgError = new TImageDataException();
+ struct.imgError = new TInvocationException();
struct.imgError.read(iprot);
struct.setImgErrorIsSet(true);
}
- if (incoming.get(3)) {
- struct.serverError = new TInternalServerError();
- struct.serverError.read(iprot);
- struct.setServerErrorIsSet(true);
- }
}
}
@@ -25619,7 +28283,7 @@ public class SatelliteServer {
public TAuthorizationException authError; // required
public TNotFoundException notFound; // required
- public TInternalServerError serverError; // required
+ public TInvocationException serverError; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
@@ -25705,7 +28369,7 @@ public class SatelliteServer {
public deleteImageVersion_result(
TAuthorizationException authError,
TNotFoundException notFound,
- TInternalServerError serverError)
+ TInvocationException serverError)
{
this();
this.authError = authError;
@@ -25724,7 +28388,7 @@ public class SatelliteServer {
this.notFound = new TNotFoundException(other.notFound);
}
if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ this.serverError = new TInvocationException(other.serverError);
}
}
@@ -25787,11 +28451,11 @@ public class SatelliteServer {
}
}
- public TInternalServerError getServerError() {
+ public TInvocationException getServerError() {
return this.serverError;
}
- public deleteImageVersion_result setServerError(TInternalServerError serverError) {
+ public deleteImageVersion_result setServerError(TInvocationException serverError) {
this.serverError = serverError;
return this;
}
@@ -25833,7 +28497,7 @@ public class SatelliteServer {
if (value == null) {
unsetServerError();
} else {
- setServerError((TInternalServerError)value);
+ setServerError((TInvocationException)value);
}
break;
@@ -26064,7 +28728,7 @@ public class SatelliteServer {
break;
case 3: // SERVER_ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
} else {
@@ -26155,7 +28819,7 @@ public class SatelliteServer {
struct.setNotFoundIsSet(true);
}
if (incoming.get(2)) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
}
@@ -26633,7 +29297,7 @@ public class SatelliteServer {
public TAuthorizationException authError; // required
public TNotFoundException notFound; // required
- public TInternalServerError serverError; // required
+ public TInvocationException serverError; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
@@ -26719,7 +29383,7 @@ public class SatelliteServer {
public deleteImageBase_result(
TAuthorizationException authError,
TNotFoundException notFound,
- TInternalServerError serverError)
+ TInvocationException serverError)
{
this();
this.authError = authError;
@@ -26738,7 +29402,7 @@ public class SatelliteServer {
this.notFound = new TNotFoundException(other.notFound);
}
if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ this.serverError = new TInvocationException(other.serverError);
}
}
@@ -26801,11 +29465,11 @@ public class SatelliteServer {
}
}
- public TInternalServerError getServerError() {
+ public TInvocationException getServerError() {
return this.serverError;
}
- public deleteImageBase_result setServerError(TInternalServerError serverError) {
+ public deleteImageBase_result setServerError(TInvocationException serverError) {
this.serverError = serverError;
return this;
}
@@ -26847,7 +29511,7 @@ public class SatelliteServer {
if (value == null) {
unsetServerError();
} else {
- setServerError((TInternalServerError)value);
+ setServerError((TInvocationException)value);
}
break;
@@ -27078,7 +29742,7 @@ public class SatelliteServer {
break;
case 3: // SERVER_ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
} else {
@@ -27169,7 +29833,7 @@ public class SatelliteServer {
struct.setNotFoundIsSet(true);
}
if (incoming.get(2)) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
}
@@ -27812,7 +30476,7 @@ public class SatelliteServer {
public TAuthorizationException authError; // required
public TNotFoundException notFound; // required
- public TInternalServerError serverError; // required
+ public TInvocationException serverError; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
@@ -27898,7 +30562,7 @@ public class SatelliteServer {
public writeImagePermissions_result(
TAuthorizationException authError,
TNotFoundException notFound,
- TInternalServerError serverError)
+ TInvocationException serverError)
{
this();
this.authError = authError;
@@ -27917,7 +30581,7 @@ public class SatelliteServer {
this.notFound = new TNotFoundException(other.notFound);
}
if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ this.serverError = new TInvocationException(other.serverError);
}
}
@@ -27980,11 +30644,11 @@ public class SatelliteServer {
}
}
- public TInternalServerError getServerError() {
+ public TInvocationException getServerError() {
return this.serverError;
}
- public writeImagePermissions_result setServerError(TInternalServerError serverError) {
+ public writeImagePermissions_result setServerError(TInvocationException serverError) {
this.serverError = serverError;
return this;
}
@@ -28026,7 +30690,7 @@ public class SatelliteServer {
if (value == null) {
unsetServerError();
} else {
- setServerError((TInternalServerError)value);
+ setServerError((TInvocationException)value);
}
break;
@@ -28257,7 +30921,7 @@ public class SatelliteServer {
break;
case 3: // SERVER_ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
} else {
@@ -28348,7 +31012,7 @@ public class SatelliteServer {
struct.setNotFoundIsSet(true);
}
if (incoming.get(2)) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
}
@@ -28828,7 +31492,7 @@ public class SatelliteServer {
public Map<String,ImagePermissions> success; // required
public TAuthorizationException authError; // required
public TNotFoundException notFound; // required
- public TInternalServerError serverError; // required
+ public TInvocationException serverError; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
@@ -28922,7 +31586,7 @@ public class SatelliteServer {
Map<String,ImagePermissions> success,
TAuthorizationException authError,
TNotFoundException notFound,
- TInternalServerError serverError)
+ TInvocationException serverError)
{
this();
this.success = success;
@@ -28957,7 +31621,7 @@ public class SatelliteServer {
this.notFound = new TNotFoundException(other.notFound);
}
if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ this.serverError = new TInvocationException(other.serverError);
}
}
@@ -29056,11 +31720,11 @@ public class SatelliteServer {
}
}
- public TInternalServerError getServerError() {
+ public TInvocationException getServerError() {
return this.serverError;
}
- public getImagePermissions_result setServerError(TInternalServerError serverError) {
+ public getImagePermissions_result setServerError(TInvocationException serverError) {
this.serverError = serverError;
return this;
}
@@ -29110,7 +31774,7 @@ public class SatelliteServer {
if (value == null) {
unsetServerError();
} else {
- setServerError((TInternalServerError)value);
+ setServerError((TInvocationException)value);
}
break;
@@ -29394,7 +32058,7 @@ public class SatelliteServer {
break;
case 3: // SERVER_ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
} else {
@@ -29527,7 +32191,7 @@ public class SatelliteServer {
struct.setNotFoundIsSet(true);
}
if (incoming.get(3)) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
}
@@ -30105,7 +32769,7 @@ public class SatelliteServer {
public TAuthorizationException authError; // required
public TNotFoundException notFound; // required
- public TInternalServerError serverError; // required
+ public TInvocationException serverError; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
@@ -30191,7 +32855,7 @@ public class SatelliteServer {
public setImageOwner_result(
TAuthorizationException authError,
TNotFoundException notFound,
- TInternalServerError serverError)
+ TInvocationException serverError)
{
this();
this.authError = authError;
@@ -30210,7 +32874,7 @@ public class SatelliteServer {
this.notFound = new TNotFoundException(other.notFound);
}
if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ this.serverError = new TInvocationException(other.serverError);
}
}
@@ -30273,11 +32937,11 @@ public class SatelliteServer {
}
}
- public TInternalServerError getServerError() {
+ public TInvocationException getServerError() {
return this.serverError;
}
- public setImageOwner_result setServerError(TInternalServerError serverError) {
+ public setImageOwner_result setServerError(TInvocationException serverError) {
this.serverError = serverError;
return this;
}
@@ -30319,7 +32983,7 @@ public class SatelliteServer {
if (value == null) {
unsetServerError();
} else {
- setServerError((TInternalServerError)value);
+ setServerError((TInvocationException)value);
}
break;
@@ -30550,7 +33214,7 @@ public class SatelliteServer {
break;
case 3: // SERVER_ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
} else {
@@ -30641,7 +33305,7 @@ public class SatelliteServer {
struct.setNotFoundIsSet(true);
}
if (incoming.get(2)) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
}
@@ -31218,7 +33882,7 @@ public class SatelliteServer {
public TAuthorizationException authError; // required
public TNotFoundException notFound; // required
- public TInternalServerError serverError; // required
+ public TInvocationException serverError; // required
public TInvalidDateParam dateError; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
@@ -31310,7 +33974,7 @@ public class SatelliteServer {
public setImageVersionExpiry_result(
TAuthorizationException authError,
TNotFoundException notFound,
- TInternalServerError serverError,
+ TInvocationException serverError,
TInvalidDateParam dateError)
{
this();
@@ -31331,7 +33995,7 @@ public class SatelliteServer {
this.notFound = new TNotFoundException(other.notFound);
}
if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ this.serverError = new TInvocationException(other.serverError);
}
if (other.isSetDateError()) {
this.dateError = new TInvalidDateParam(other.dateError);
@@ -31398,11 +34062,11 @@ public class SatelliteServer {
}
}
- public TInternalServerError getServerError() {
+ public TInvocationException getServerError() {
return this.serverError;
}
- public setImageVersionExpiry_result setServerError(TInternalServerError serverError) {
+ public setImageVersionExpiry_result setServerError(TInvocationException serverError) {
this.serverError = serverError;
return this;
}
@@ -31468,7 +34132,7 @@ public class SatelliteServer {
if (value == null) {
unsetServerError();
} else {
- setServerError((TInternalServerError)value);
+ setServerError((TInvocationException)value);
}
break;
@@ -31739,7 +34403,7 @@ public class SatelliteServer {
break;
case 3: // SERVER_ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
} else {
@@ -31850,7 +34514,7 @@ public class SatelliteServer {
struct.setNotFoundIsSet(true);
}
if (incoming.get(2)) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
}
@@ -32339,7 +35003,7 @@ public class SatelliteServer {
public String success; // required
public TAuthorizationException authError; // required
- public TInternalServerError serverError; // required
+ public TInvocationException serverError; // required
public TInvalidDateParam dateError; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
@@ -32431,7 +35095,7 @@ public class SatelliteServer {
public createLecture_result(
String success,
TAuthorizationException authError,
- TInternalServerError serverError,
+ TInvocationException serverError,
TInvalidDateParam dateError)
{
this();
@@ -32452,7 +35116,7 @@ public class SatelliteServer {
this.authError = new TAuthorizationException(other.authError);
}
if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ this.serverError = new TInvocationException(other.serverError);
}
if (other.isSetDateError()) {
this.dateError = new TInvalidDateParam(other.dateError);
@@ -32519,11 +35183,11 @@ public class SatelliteServer {
}
}
- public TInternalServerError getServerError() {
+ public TInvocationException getServerError() {
return this.serverError;
}
- public createLecture_result setServerError(TInternalServerError serverError) {
+ public createLecture_result setServerError(TInvocationException serverError) {
this.serverError = serverError;
return this;
}
@@ -32589,7 +35253,7 @@ public class SatelliteServer {
if (value == null) {
unsetServerError();
} else {
- setServerError((TInternalServerError)value);
+ setServerError((TInvocationException)value);
}
break;
@@ -32859,7 +35523,7 @@ public class SatelliteServer {
break;
case 2: // SERVER_ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
} else {
@@ -32969,7 +35633,7 @@ public class SatelliteServer {
struct.setAuthErrorIsSet(true);
}
if (incoming.get(2)) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
}
@@ -33558,7 +36222,7 @@ public class SatelliteServer {
public TAuthorizationException authError; // required
public TNotFoundException notFound; // required
- public TInternalServerError serverError; // required
+ public TInvocationException serverError; // required
public TInvalidDateParam dateError; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
@@ -33650,7 +36314,7 @@ public class SatelliteServer {
public updateLecture_result(
TAuthorizationException authError,
TNotFoundException notFound,
- TInternalServerError serverError,
+ TInvocationException serverError,
TInvalidDateParam dateError)
{
this();
@@ -33671,7 +36335,7 @@ public class SatelliteServer {
this.notFound = new TNotFoundException(other.notFound);
}
if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ this.serverError = new TInvocationException(other.serverError);
}
if (other.isSetDateError()) {
this.dateError = new TInvalidDateParam(other.dateError);
@@ -33738,11 +36402,11 @@ public class SatelliteServer {
}
}
- public TInternalServerError getServerError() {
+ public TInvocationException getServerError() {
return this.serverError;
}
- public updateLecture_result setServerError(TInternalServerError serverError) {
+ public updateLecture_result setServerError(TInvocationException serverError) {
this.serverError = serverError;
return this;
}
@@ -33808,7 +36472,7 @@ public class SatelliteServer {
if (value == null) {
unsetServerError();
} else {
- setServerError((TInternalServerError)value);
+ setServerError((TInvocationException)value);
}
break;
@@ -34079,7 +36743,7 @@ public class SatelliteServer {
break;
case 3: // SERVER_ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
} else {
@@ -34190,7 +36854,7 @@ public class SatelliteServer {
struct.setNotFoundIsSet(true);
}
if (incoming.get(2)) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
}
@@ -34671,7 +37335,7 @@ public class SatelliteServer {
public List<LectureSummary> success; // required
public TAuthorizationException authError; // required
- public TInternalServerError serverError; // required
+ public TInvocationException serverError; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
@@ -34758,7 +37422,7 @@ public class SatelliteServer {
public getLectureList_result(
List<LectureSummary> success,
TAuthorizationException authError,
- TInternalServerError serverError)
+ TInvocationException serverError)
{
this();
this.success = success;
@@ -34781,7 +37445,7 @@ public class SatelliteServer {
this.authError = new TAuthorizationException(other.authError);
}
if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ this.serverError = new TInvocationException(other.serverError);
}
}
@@ -34859,11 +37523,11 @@ public class SatelliteServer {
}
}
- public TInternalServerError getServerError() {
+ public TInvocationException getServerError() {
return this.serverError;
}
- public getLectureList_result setServerError(TInternalServerError serverError) {
+ public getLectureList_result setServerError(TInvocationException serverError) {
this.serverError = serverError;
return this;
}
@@ -34905,7 +37569,7 @@ public class SatelliteServer {
if (value == null) {
unsetServerError();
} else {
- setServerError((TInternalServerError)value);
+ setServerError((TInvocationException)value);
}
break;
@@ -35146,7 +37810,7 @@ public class SatelliteServer {
break;
case 2: // SERVER_ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
} else {
@@ -35259,7 +37923,7 @@ public class SatelliteServer {
struct.setAuthErrorIsSet(true);
}
if (incoming.get(2)) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
}
@@ -35739,7 +38403,7 @@ public class SatelliteServer {
public LectureRead success; // required
public TAuthorizationException authError; // required
public TNotFoundException notFound; // required
- public TInternalServerError serverError; // required
+ public TInvocationException serverError; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
@@ -35831,7 +38495,7 @@ public class SatelliteServer {
LectureRead success,
TAuthorizationException authError,
TNotFoundException notFound,
- TInternalServerError serverError)
+ TInvocationException serverError)
{
this();
this.success = success;
@@ -35854,7 +38518,7 @@ public class SatelliteServer {
this.notFound = new TNotFoundException(other.notFound);
}
if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ this.serverError = new TInvocationException(other.serverError);
}
}
@@ -35942,11 +38606,11 @@ public class SatelliteServer {
}
}
- public TInternalServerError getServerError() {
+ public TInvocationException getServerError() {
return this.serverError;
}
- public getLectureDetails_result setServerError(TInternalServerError serverError) {
+ public getLectureDetails_result setServerError(TInvocationException serverError) {
this.serverError = serverError;
return this;
}
@@ -35996,7 +38660,7 @@ public class SatelliteServer {
if (value == null) {
unsetServerError();
} else {
- setServerError((TInternalServerError)value);
+ setServerError((TInvocationException)value);
}
break;
@@ -36271,7 +38935,7 @@ public class SatelliteServer {
break;
case 3: // SERVER_ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
} else {
@@ -36378,7 +39042,7 @@ public class SatelliteServer {
struct.setNotFoundIsSet(true);
}
if (incoming.get(3)) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
}
@@ -36856,7 +39520,7 @@ public class SatelliteServer {
public TAuthorizationException authError; // required
public TNotFoundException notFound; // required
- public TInternalServerError serverError; // required
+ public TInvocationException serverError; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
@@ -36942,7 +39606,7 @@ public class SatelliteServer {
public deleteLecture_result(
TAuthorizationException authError,
TNotFoundException notFound,
- TInternalServerError serverError)
+ TInvocationException serverError)
{
this();
this.authError = authError;
@@ -36961,7 +39625,7 @@ public class SatelliteServer {
this.notFound = new TNotFoundException(other.notFound);
}
if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ this.serverError = new TInvocationException(other.serverError);
}
}
@@ -37024,11 +39688,11 @@ public class SatelliteServer {
}
}
- public TInternalServerError getServerError() {
+ public TInvocationException getServerError() {
return this.serverError;
}
- public deleteLecture_result setServerError(TInternalServerError serverError) {
+ public deleteLecture_result setServerError(TInvocationException serverError) {
this.serverError = serverError;
return this;
}
@@ -37070,7 +39734,7 @@ public class SatelliteServer {
if (value == null) {
unsetServerError();
} else {
- setServerError((TInternalServerError)value);
+ setServerError((TInvocationException)value);
}
break;
@@ -37301,7 +39965,7 @@ public class SatelliteServer {
break;
case 3: // SERVER_ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
} else {
@@ -37392,7 +40056,7 @@ public class SatelliteServer {
struct.setNotFoundIsSet(true);
}
if (incoming.get(2)) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
}
@@ -38035,7 +40699,7 @@ public class SatelliteServer {
public TAuthorizationException authError; // required
public TNotFoundException notFound; // required
- public TInternalServerError serverError; // required
+ public TInvocationException serverError; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
@@ -38121,7 +40785,7 @@ public class SatelliteServer {
public writeLecturePermissions_result(
TAuthorizationException authError,
TNotFoundException notFound,
- TInternalServerError serverError)
+ TInvocationException serverError)
{
this();
this.authError = authError;
@@ -38140,7 +40804,7 @@ public class SatelliteServer {
this.notFound = new TNotFoundException(other.notFound);
}
if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ this.serverError = new TInvocationException(other.serverError);
}
}
@@ -38203,11 +40867,11 @@ public class SatelliteServer {
}
}
- public TInternalServerError getServerError() {
+ public TInvocationException getServerError() {
return this.serverError;
}
- public writeLecturePermissions_result setServerError(TInternalServerError serverError) {
+ public writeLecturePermissions_result setServerError(TInvocationException serverError) {
this.serverError = serverError;
return this;
}
@@ -38249,7 +40913,7 @@ public class SatelliteServer {
if (value == null) {
unsetServerError();
} else {
- setServerError((TInternalServerError)value);
+ setServerError((TInvocationException)value);
}
break;
@@ -38480,7 +41144,7 @@ public class SatelliteServer {
break;
case 3: // SERVER_ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
} else {
@@ -38571,7 +41235,7 @@ public class SatelliteServer {
struct.setNotFoundIsSet(true);
}
if (incoming.get(2)) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
}
@@ -39051,7 +41715,7 @@ public class SatelliteServer {
public Map<String,LecturePermissions> success; // required
public TAuthorizationException authError; // required
public TNotFoundException notFound; // required
- public TInternalServerError serverError; // required
+ public TInvocationException serverError; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
@@ -39145,7 +41809,7 @@ public class SatelliteServer {
Map<String,LecturePermissions> success,
TAuthorizationException authError,
TNotFoundException notFound,
- TInternalServerError serverError)
+ TInvocationException serverError)
{
this();
this.success = success;
@@ -39180,7 +41844,7 @@ public class SatelliteServer {
this.notFound = new TNotFoundException(other.notFound);
}
if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ this.serverError = new TInvocationException(other.serverError);
}
}
@@ -39279,11 +41943,11 @@ public class SatelliteServer {
}
}
- public TInternalServerError getServerError() {
+ public TInvocationException getServerError() {
return this.serverError;
}
- public getLecturePermissions_result setServerError(TInternalServerError serverError) {
+ public getLecturePermissions_result setServerError(TInvocationException serverError) {
this.serverError = serverError;
return this;
}
@@ -39333,7 +41997,7 @@ public class SatelliteServer {
if (value == null) {
unsetServerError();
} else {
- setServerError((TInternalServerError)value);
+ setServerError((TInvocationException)value);
}
break;
@@ -39617,7 +42281,7 @@ public class SatelliteServer {
break;
case 3: // SERVER_ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
} else {
@@ -39750,7 +42414,7 @@ public class SatelliteServer {
struct.setNotFoundIsSet(true);
}
if (incoming.get(3)) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
}
@@ -40328,7 +42992,7 @@ public class SatelliteServer {
public TAuthorizationException authError; // required
public TNotFoundException notFound; // required
- public TInternalServerError serverError; // required
+ public TInvocationException serverError; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
@@ -40414,7 +43078,7 @@ public class SatelliteServer {
public setLectureOwner_result(
TAuthorizationException authError,
TNotFoundException notFound,
- TInternalServerError serverError)
+ TInvocationException serverError)
{
this();
this.authError = authError;
@@ -40433,7 +43097,7 @@ public class SatelliteServer {
this.notFound = new TNotFoundException(other.notFound);
}
if (other.isSetServerError()) {
- this.serverError = new TInternalServerError(other.serverError);
+ this.serverError = new TInvocationException(other.serverError);
}
}
@@ -40496,11 +43160,11 @@ public class SatelliteServer {
}
}
- public TInternalServerError getServerError() {
+ public TInvocationException getServerError() {
return this.serverError;
}
- public setLectureOwner_result setServerError(TInternalServerError serverError) {
+ public setLectureOwner_result setServerError(TInvocationException serverError) {
this.serverError = serverError;
return this;
}
@@ -40542,7 +43206,7 @@ public class SatelliteServer {
if (value == null) {
unsetServerError();
} else {
- setServerError((TInternalServerError)value);
+ setServerError((TInvocationException)value);
}
break;
@@ -40773,7 +43437,7 @@ public class SatelliteServer {
break;
case 3: // SERVER_ERROR
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
} else {
@@ -40864,7 +43528,7 @@ public class SatelliteServer {
struct.setNotFoundIsSet(true);
}
if (incoming.get(2)) {
- struct.serverError = new TInternalServerError();
+ struct.serverError = new TInvocationException();
struct.serverError.read(iprot);
struct.setServerErrorIsSet(true);
}
diff --git a/src/main/java/org/openslx/bwlp/thrift/iface/SatelliteStatus.java b/src/main/java/org/openslx/bwlp/thrift/iface/SatelliteStatus.java
new file mode 100644
index 0000000..7cccb65
--- /dev/null
+++ b/src/main/java/org/openslx/bwlp/thrift/iface/SatelliteStatus.java
@@ -0,0 +1,480 @@
+/**
+ * Autogenerated by Thrift Compiler (0.9.1)
+ *
+ * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
+ * @generated
+ */
+package org.openslx.bwlp.thrift.iface;
+
+import org.apache.thrift.scheme.IScheme;
+import org.apache.thrift.scheme.SchemeFactory;
+import org.apache.thrift.scheme.StandardScheme;
+
+import org.apache.thrift.scheme.TupleScheme;
+import org.apache.thrift.protocol.TTupleProtocol;
+import org.apache.thrift.protocol.TProtocolException;
+import org.apache.thrift.EncodingUtils;
+import org.apache.thrift.TException;
+import org.apache.thrift.async.AsyncMethodCallback;
+import org.apache.thrift.server.AbstractNonblockingServer.*;
+import java.util.List;
+import java.util.ArrayList;
+import java.util.Map;
+import java.util.HashMap;
+import java.util.EnumMap;
+import java.util.Set;
+import java.util.HashSet;
+import java.util.EnumSet;
+import java.util.Collections;
+import java.util.BitSet;
+import java.nio.ByteBuffer;
+import java.util.Arrays;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+public class SatelliteStatus implements org.apache.thrift.TBase<SatelliteStatus, SatelliteStatus._Fields>, java.io.Serializable, Cloneable, Comparable<SatelliteStatus> {
+ private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("SatelliteStatus");
+
+ private static final org.apache.thrift.protocol.TField AVAILABLE_STORAGE_BYTES_FIELD_DESC = new org.apache.thrift.protocol.TField("availableStorageBytes", org.apache.thrift.protocol.TType.I64, (short)1);
+ private static final org.apache.thrift.protocol.TField SERVER_TIME_FIELD_DESC = new org.apache.thrift.protocol.TField("serverTime", org.apache.thrift.protocol.TType.I64, (short)2);
+
+ private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
+ static {
+ schemes.put(StandardScheme.class, new SatelliteStatusStandardSchemeFactory());
+ schemes.put(TupleScheme.class, new SatelliteStatusTupleSchemeFactory());
+ }
+
+ public long availableStorageBytes; // required
+ public long serverTime; // required
+
+ /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
+ public enum _Fields implements org.apache.thrift.TFieldIdEnum {
+ AVAILABLE_STORAGE_BYTES((short)1, "availableStorageBytes"),
+ SERVER_TIME((short)2, "serverTime");
+
+ private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
+
+ static {
+ for (_Fields field : EnumSet.allOf(_Fields.class)) {
+ byName.put(field.getFieldName(), field);
+ }
+ }
+
+ /**
+ * Find the _Fields constant that matches fieldId, or null if its not found.
+ */
+ public static _Fields findByThriftId(int fieldId) {
+ switch(fieldId) {
+ case 1: // AVAILABLE_STORAGE_BYTES
+ return AVAILABLE_STORAGE_BYTES;
+ case 2: // SERVER_TIME
+ return SERVER_TIME;
+ default:
+ return null;
+ }
+ }
+
+ /**
+ * Find the _Fields constant that matches fieldId, throwing an exception
+ * if it is not found.
+ */
+ public static _Fields findByThriftIdOrThrow(int fieldId) {
+ _Fields fields = findByThriftId(fieldId);
+ if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
+ return fields;
+ }
+
+ /**
+ * Find the _Fields constant that matches name, or null if its not found.
+ */
+ public static _Fields findByName(String name) {
+ return byName.get(name);
+ }
+
+ private final short _thriftId;
+ private final String _fieldName;
+
+ _Fields(short thriftId, String fieldName) {
+ _thriftId = thriftId;
+ _fieldName = fieldName;
+ }
+
+ public short getThriftFieldId() {
+ return _thriftId;
+ }
+
+ public String getFieldName() {
+ return _fieldName;
+ }
+ }
+
+ // isset id assignments
+ private static final int __AVAILABLESTORAGEBYTES_ISSET_ID = 0;
+ private static final int __SERVERTIME_ISSET_ID = 1;
+ private byte __isset_bitfield = 0;
+ public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
+ static {
+ Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
+ tmpMap.put(_Fields.AVAILABLE_STORAGE_BYTES, new org.apache.thrift.meta_data.FieldMetaData("availableStorageBytes", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));
+ tmpMap.put(_Fields.SERVER_TIME, new org.apache.thrift.meta_data.FieldMetaData("serverTime", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64 , "UnixTimestamp")));
+ metaDataMap = Collections.unmodifiableMap(tmpMap);
+ org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(SatelliteStatus.class, metaDataMap);
+ }
+
+ public SatelliteStatus() {
+ }
+
+ public SatelliteStatus(
+ long availableStorageBytes,
+ long serverTime)
+ {
+ this();
+ this.availableStorageBytes = availableStorageBytes;
+ setAvailableStorageBytesIsSet(true);
+ this.serverTime = serverTime;
+ setServerTimeIsSet(true);
+ }
+
+ /**
+ * Performs a deep copy on <i>other</i>.
+ */
+ public SatelliteStatus(SatelliteStatus other) {
+ __isset_bitfield = other.__isset_bitfield;
+ this.availableStorageBytes = other.availableStorageBytes;
+ this.serverTime = other.serverTime;
+ }
+
+ public SatelliteStatus deepCopy() {
+ return new SatelliteStatus(this);
+ }
+
+ @Override
+ public void clear() {
+ setAvailableStorageBytesIsSet(false);
+ this.availableStorageBytes = 0;
+ setServerTimeIsSet(false);
+ this.serverTime = 0;
+ }
+
+ public long getAvailableStorageBytes() {
+ return this.availableStorageBytes;
+ }
+
+ public SatelliteStatus setAvailableStorageBytes(long availableStorageBytes) {
+ this.availableStorageBytes = availableStorageBytes;
+ setAvailableStorageBytesIsSet(true);
+ return this;
+ }
+
+ public void unsetAvailableStorageBytes() {
+ __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __AVAILABLESTORAGEBYTES_ISSET_ID);
+ }
+
+ /** Returns true if field availableStorageBytes is set (has been assigned a value) and false otherwise */
+ public boolean isSetAvailableStorageBytes() {
+ return EncodingUtils.testBit(__isset_bitfield, __AVAILABLESTORAGEBYTES_ISSET_ID);
+ }
+
+ public void setAvailableStorageBytesIsSet(boolean value) {
+ __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __AVAILABLESTORAGEBYTES_ISSET_ID, value);
+ }
+
+ public long getServerTime() {
+ return this.serverTime;
+ }
+
+ public SatelliteStatus setServerTime(long serverTime) {
+ this.serverTime = serverTime;
+ setServerTimeIsSet(true);
+ return this;
+ }
+
+ public void unsetServerTime() {
+ __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __SERVERTIME_ISSET_ID);
+ }
+
+ /** Returns true if field serverTime is set (has been assigned a value) and false otherwise */
+ public boolean isSetServerTime() {
+ return EncodingUtils.testBit(__isset_bitfield, __SERVERTIME_ISSET_ID);
+ }
+
+ public void setServerTimeIsSet(boolean value) {
+ __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __SERVERTIME_ISSET_ID, value);
+ }
+
+ public void setFieldValue(_Fields field, Object value) {
+ switch (field) {
+ case AVAILABLE_STORAGE_BYTES:
+ if (value == null) {
+ unsetAvailableStorageBytes();
+ } else {
+ setAvailableStorageBytes((Long)value);
+ }
+ break;
+
+ case SERVER_TIME:
+ if (value == null) {
+ unsetServerTime();
+ } else {
+ setServerTime((Long)value);
+ }
+ break;
+
+ }
+ }
+
+ public Object getFieldValue(_Fields field) {
+ switch (field) {
+ case AVAILABLE_STORAGE_BYTES:
+ return Long.valueOf(getAvailableStorageBytes());
+
+ case SERVER_TIME:
+ return Long.valueOf(getServerTime());
+
+ }
+ throw new IllegalStateException();
+ }
+
+ /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
+ public boolean isSet(_Fields field) {
+ if (field == null) {
+ throw new IllegalArgumentException();
+ }
+
+ switch (field) {
+ case AVAILABLE_STORAGE_BYTES:
+ return isSetAvailableStorageBytes();
+ case SERVER_TIME:
+ return isSetServerTime();
+ }
+ throw new IllegalStateException();
+ }
+
+ @Override
+ public boolean equals(Object that) {
+ if (that == null)
+ return false;
+ if (that instanceof SatelliteStatus)
+ return this.equals((SatelliteStatus)that);
+ return false;
+ }
+
+ public boolean equals(SatelliteStatus that) {
+ if (that == null)
+ return false;
+
+ boolean this_present_availableStorageBytes = true;
+ boolean that_present_availableStorageBytes = true;
+ if (this_present_availableStorageBytes || that_present_availableStorageBytes) {
+ if (!(this_present_availableStorageBytes && that_present_availableStorageBytes))
+ return false;
+ if (this.availableStorageBytes != that.availableStorageBytes)
+ return false;
+ }
+
+ boolean this_present_serverTime = true;
+ boolean that_present_serverTime = true;
+ if (this_present_serverTime || that_present_serverTime) {
+ if (!(this_present_serverTime && that_present_serverTime))
+ return false;
+ if (this.serverTime != that.serverTime)
+ return false;
+ }
+
+ return true;
+ }
+
+ @Override
+ public int hashCode() {
+ return 0;
+ }
+
+ @Override
+ public int compareTo(SatelliteStatus other) {
+ if (!getClass().equals(other.getClass())) {
+ return getClass().getName().compareTo(other.getClass().getName());
+ }
+
+ int lastComparison = 0;
+
+ lastComparison = Boolean.valueOf(isSetAvailableStorageBytes()).compareTo(other.isSetAvailableStorageBytes());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetAvailableStorageBytes()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.availableStorageBytes, other.availableStorageBytes);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
+ lastComparison = Boolean.valueOf(isSetServerTime()).compareTo(other.isSetServerTime());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetServerTime()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.serverTime, other.serverTime);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
+ return 0;
+ }
+
+ public _Fields fieldForId(int fieldId) {
+ return _Fields.findByThriftId(fieldId);
+ }
+
+ public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException {
+ schemes.get(iprot.getScheme()).getScheme().read(iprot, this);
+ }
+
+ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
+ schemes.get(oprot.getScheme()).getScheme().write(oprot, this);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder("SatelliteStatus(");
+ boolean first = true;
+
+ sb.append("availableStorageBytes:");
+ sb.append(this.availableStorageBytes);
+ first = false;
+ if (!first) sb.append(", ");
+ sb.append("serverTime:");
+ sb.append(this.serverTime);
+ first = false;
+ sb.append(")");
+ return sb.toString();
+ }
+
+ public void validate() throws org.apache.thrift.TException {
+ // check for required fields
+ // check for sub-struct validity
+ }
+
+ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
+ try {
+ write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out)));
+ } catch (org.apache.thrift.TException te) {
+ throw new java.io.IOException(te);
+ }
+ }
+
+ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
+ try {
+ // it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
+ __isset_bitfield = 0;
+ read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
+ } catch (org.apache.thrift.TException te) {
+ throw new java.io.IOException(te);
+ }
+ }
+
+ private static class SatelliteStatusStandardSchemeFactory implements SchemeFactory {
+ public SatelliteStatusStandardScheme getScheme() {
+ return new SatelliteStatusStandardScheme();
+ }
+ }
+
+ private static class SatelliteStatusStandardScheme extends StandardScheme<SatelliteStatus> {
+
+ public void read(org.apache.thrift.protocol.TProtocol iprot, SatelliteStatus struct) throws org.apache.thrift.TException {
+ org.apache.thrift.protocol.TField schemeField;
+ iprot.readStructBegin();
+ while (true)
+ {
+ schemeField = iprot.readFieldBegin();
+ if (schemeField.type == org.apache.thrift.protocol.TType.STOP) {
+ break;
+ }
+ switch (schemeField.id) {
+ case 1: // AVAILABLE_STORAGE_BYTES
+ if (schemeField.type == org.apache.thrift.protocol.TType.I64) {
+ struct.availableStorageBytes = iprot.readI64();
+ struct.setAvailableStorageBytesIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ case 2: // SERVER_TIME
+ if (schemeField.type == org.apache.thrift.protocol.TType.I64) {
+ struct.serverTime = iprot.readI64();
+ struct.setServerTimeIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ default:
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ iprot.readFieldEnd();
+ }
+ iprot.readStructEnd();
+
+ // check for required fields of primitive type, which can't be checked in the validate method
+ struct.validate();
+ }
+
+ public void write(org.apache.thrift.protocol.TProtocol oprot, SatelliteStatus struct) throws org.apache.thrift.TException {
+ struct.validate();
+
+ oprot.writeStructBegin(STRUCT_DESC);
+ oprot.writeFieldBegin(AVAILABLE_STORAGE_BYTES_FIELD_DESC);
+ oprot.writeI64(struct.availableStorageBytes);
+ oprot.writeFieldEnd();
+ oprot.writeFieldBegin(SERVER_TIME_FIELD_DESC);
+ oprot.writeI64(struct.serverTime);
+ oprot.writeFieldEnd();
+ oprot.writeFieldStop();
+ oprot.writeStructEnd();
+ }
+
+ }
+
+ private static class SatelliteStatusTupleSchemeFactory implements SchemeFactory {
+ public SatelliteStatusTupleScheme getScheme() {
+ return new SatelliteStatusTupleScheme();
+ }
+ }
+
+ private static class SatelliteStatusTupleScheme extends TupleScheme<SatelliteStatus> {
+
+ @Override
+ public void write(org.apache.thrift.protocol.TProtocol prot, SatelliteStatus struct) throws org.apache.thrift.TException {
+ TTupleProtocol oprot = (TTupleProtocol) prot;
+ BitSet optionals = new BitSet();
+ if (struct.isSetAvailableStorageBytes()) {
+ optionals.set(0);
+ }
+ if (struct.isSetServerTime()) {
+ optionals.set(1);
+ }
+ oprot.writeBitSet(optionals, 2);
+ if (struct.isSetAvailableStorageBytes()) {
+ oprot.writeI64(struct.availableStorageBytes);
+ }
+ if (struct.isSetServerTime()) {
+ oprot.writeI64(struct.serverTime);
+ }
+ }
+
+ @Override
+ public void read(org.apache.thrift.protocol.TProtocol prot, SatelliteStatus struct) throws org.apache.thrift.TException {
+ TTupleProtocol iprot = (TTupleProtocol) prot;
+ BitSet incoming = iprot.readBitSet(2);
+ if (incoming.get(0)) {
+ struct.availableStorageBytes = iprot.readI64();
+ struct.setAvailableStorageBytesIsSet(true);
+ }
+ if (incoming.get(1)) {
+ struct.serverTime = iprot.readI64();
+ struct.setServerTimeIsSet(true);
+ }
+ }
+ }
+
+}
+
diff --git a/src/main/java/org/openslx/bwlp/thrift/iface/TInternalServerError.java b/src/main/java/org/openslx/bwlp/thrift/iface/SatelliteUserConfig.java
index 0020ff1..fce3fce 100644
--- a/src/main/java/org/openslx/bwlp/thrift/iface/TInternalServerError.java
+++ b/src/main/java/org/openslx/bwlp/thrift/iface/SatelliteUserConfig.java
@@ -32,20 +32,22 @@ import java.util.Arrays;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
-public class TInternalServerError extends TException implements org.apache.thrift.TBase<TInternalServerError, TInternalServerError._Fields>, java.io.Serializable, Cloneable, Comparable<TInternalServerError> {
- private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TInternalServerError");
+public class SatelliteUserConfig implements org.apache.thrift.TBase<SatelliteUserConfig, SatelliteUserConfig._Fields>, java.io.Serializable, Cloneable, Comparable<SatelliteUserConfig> {
+ private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("SatelliteUserConfig");
+ private static final org.apache.thrift.protocol.TField EMAIL_NOTIFICATIONS_FIELD_DESC = new org.apache.thrift.protocol.TField("emailNotifications", org.apache.thrift.protocol.TType.BOOL, (short)1);
private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
static {
- schemes.put(StandardScheme.class, new TInternalServerErrorStandardSchemeFactory());
- schemes.put(TupleScheme.class, new TInternalServerErrorTupleSchemeFactory());
+ schemes.put(StandardScheme.class, new SatelliteUserConfigStandardSchemeFactory());
+ schemes.put(TupleScheme.class, new SatelliteUserConfigTupleSchemeFactory());
}
+ public boolean emailNotifications; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
-;
+ EMAIL_NOTIFICATIONS((short)1, "emailNotifications");
private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
@@ -60,6 +62,8 @@ public class TInternalServerError extends TException implements org.apache.thrif
*/
public static _Fields findByThriftId(int fieldId) {
switch(fieldId) {
+ case 1: // EMAIL_NOTIFICATIONS
+ return EMAIL_NOTIFICATIONS;
default:
return null;
}
@@ -98,37 +102,89 @@ public class TInternalServerError extends TException implements org.apache.thrif
return _fieldName;
}
}
+
+ // isset id assignments
+ private static final int __EMAILNOTIFICATIONS_ISSET_ID = 0;
+ private byte __isset_bitfield = 0;
public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
static {
Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
+ tmpMap.put(_Fields.EMAIL_NOTIFICATIONS, new org.apache.thrift.meta_data.FieldMetaData("emailNotifications", org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
- org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(TInternalServerError.class, metaDataMap);
+ org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(SatelliteUserConfig.class, metaDataMap);
+ }
+
+ public SatelliteUserConfig() {
}
- public TInternalServerError() {
+ public SatelliteUserConfig(
+ boolean emailNotifications)
+ {
+ this();
+ this.emailNotifications = emailNotifications;
+ setEmailNotificationsIsSet(true);
}
/**
* Performs a deep copy on <i>other</i>.
*/
- public TInternalServerError(TInternalServerError other) {
+ public SatelliteUserConfig(SatelliteUserConfig other) {
+ __isset_bitfield = other.__isset_bitfield;
+ this.emailNotifications = other.emailNotifications;
}
- public TInternalServerError deepCopy() {
- return new TInternalServerError(this);
+ public SatelliteUserConfig deepCopy() {
+ return new SatelliteUserConfig(this);
}
@Override
public void clear() {
+ setEmailNotificationsIsSet(false);
+ this.emailNotifications = false;
+ }
+
+ public boolean isEmailNotifications() {
+ return this.emailNotifications;
+ }
+
+ public SatelliteUserConfig setEmailNotifications(boolean emailNotifications) {
+ this.emailNotifications = emailNotifications;
+ setEmailNotificationsIsSet(true);
+ return this;
+ }
+
+ public void unsetEmailNotifications() {
+ __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __EMAILNOTIFICATIONS_ISSET_ID);
+ }
+
+ /** Returns true if field emailNotifications is set (has been assigned a value) and false otherwise */
+ public boolean isSetEmailNotifications() {
+ return EncodingUtils.testBit(__isset_bitfield, __EMAILNOTIFICATIONS_ISSET_ID);
+ }
+
+ public void setEmailNotificationsIsSet(boolean value) {
+ __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __EMAILNOTIFICATIONS_ISSET_ID, value);
}
public void setFieldValue(_Fields field, Object value) {
switch (field) {
+ case EMAIL_NOTIFICATIONS:
+ if (value == null) {
+ unsetEmailNotifications();
+ } else {
+ setEmailNotifications((Boolean)value);
+ }
+ break;
+
}
}
public Object getFieldValue(_Fields field) {
switch (field) {
+ case EMAIL_NOTIFICATIONS:
+ return Boolean.valueOf(isEmailNotifications());
+
}
throw new IllegalStateException();
}
@@ -140,6 +196,8 @@ public class TInternalServerError extends TException implements org.apache.thrif
}
switch (field) {
+ case EMAIL_NOTIFICATIONS:
+ return isSetEmailNotifications();
}
throw new IllegalStateException();
}
@@ -148,15 +206,24 @@ public class TInternalServerError extends TException implements org.apache.thrif
public boolean equals(Object that) {
if (that == null)
return false;
- if (that instanceof TInternalServerError)
- return this.equals((TInternalServerError)that);
+ if (that instanceof SatelliteUserConfig)
+ return this.equals((SatelliteUserConfig)that);
return false;
}
- public boolean equals(TInternalServerError that) {
+ public boolean equals(SatelliteUserConfig that) {
if (that == null)
return false;
+ boolean this_present_emailNotifications = true;
+ boolean that_present_emailNotifications = true;
+ if (this_present_emailNotifications || that_present_emailNotifications) {
+ if (!(this_present_emailNotifications && that_present_emailNotifications))
+ return false;
+ if (this.emailNotifications != that.emailNotifications)
+ return false;
+ }
+
return true;
}
@@ -166,13 +233,23 @@ public class TInternalServerError extends TException implements org.apache.thrif
}
@Override
- public int compareTo(TInternalServerError other) {
+ public int compareTo(SatelliteUserConfig other) {
if (!getClass().equals(other.getClass())) {
return getClass().getName().compareTo(other.getClass().getName());
}
int lastComparison = 0;
+ lastComparison = Boolean.valueOf(isSetEmailNotifications()).compareTo(other.isSetEmailNotifications());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetEmailNotifications()) {
+ lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.emailNotifications, other.emailNotifications);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
return 0;
}
@@ -190,9 +267,12 @@ public class TInternalServerError extends TException implements org.apache.thrif
@Override
public String toString() {
- StringBuilder sb = new StringBuilder("TInternalServerError(");
+ StringBuilder sb = new StringBuilder("SatelliteUserConfig(");
boolean first = true;
+ sb.append("emailNotifications:");
+ sb.append(this.emailNotifications);
+ first = false;
sb.append(")");
return sb.toString();
}
@@ -212,21 +292,23 @@ public class TInternalServerError extends TException implements org.apache.thrif
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
try {
+ // it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
+ __isset_bitfield = 0;
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
} catch (org.apache.thrift.TException te) {
throw new java.io.IOException(te);
}
}
- private static class TInternalServerErrorStandardSchemeFactory implements SchemeFactory {
- public TInternalServerErrorStandardScheme getScheme() {
- return new TInternalServerErrorStandardScheme();
+ private static class SatelliteUserConfigStandardSchemeFactory implements SchemeFactory {
+ public SatelliteUserConfigStandardScheme getScheme() {
+ return new SatelliteUserConfigStandardScheme();
}
}
- private static class TInternalServerErrorStandardScheme extends StandardScheme<TInternalServerError> {
+ private static class SatelliteUserConfigStandardScheme extends StandardScheme<SatelliteUserConfig> {
- public void read(org.apache.thrift.protocol.TProtocol iprot, TInternalServerError struct) throws org.apache.thrift.TException {
+ public void read(org.apache.thrift.protocol.TProtocol iprot, SatelliteUserConfig struct) throws org.apache.thrift.TException {
org.apache.thrift.protocol.TField schemeField;
iprot.readStructBegin();
while (true)
@@ -236,6 +318,14 @@ public class TInternalServerError extends TException implements org.apache.thrif
break;
}
switch (schemeField.id) {
+ case 1: // EMAIL_NOTIFICATIONS
+ if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) {
+ struct.emailNotifications = iprot.readBool();
+ struct.setEmailNotificationsIsSet(true);
+ } else {
+ org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
default:
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
@@ -247,32 +337,48 @@ public class TInternalServerError extends TException implements org.apache.thrif
struct.validate();
}
- public void write(org.apache.thrift.protocol.TProtocol oprot, TInternalServerError struct) throws org.apache.thrift.TException {
+ public void write(org.apache.thrift.protocol.TProtocol oprot, SatelliteUserConfig struct) throws org.apache.thrift.TException {
struct.validate();
oprot.writeStructBegin(STRUCT_DESC);
+ oprot.writeFieldBegin(EMAIL_NOTIFICATIONS_FIELD_DESC);
+ oprot.writeBool(struct.emailNotifications);
+ oprot.writeFieldEnd();
oprot.writeFieldStop();
oprot.writeStructEnd();
}
}
- private static class TInternalServerErrorTupleSchemeFactory implements SchemeFactory {
- public TInternalServerErrorTupleScheme getScheme() {
- return new TInternalServerErrorTupleScheme();
+ private static class SatelliteUserConfigTupleSchemeFactory implements SchemeFactory {
+ public SatelliteUserConfigTupleScheme getScheme() {
+ return new SatelliteUserConfigTupleScheme();
}
}
- private static class TInternalServerErrorTupleScheme extends TupleScheme<TInternalServerError> {
+ private static class SatelliteUserConfigTupleScheme extends TupleScheme<SatelliteUserConfig> {
@Override
- public void write(org.apache.thrift.protocol.TProtocol prot, TInternalServerError struct) throws org.apache.thrift.TException {
+ public void write(org.apache.thrift.protocol.TProtocol prot, SatelliteUserConfig struct) throws org.apache.thrift.TException {
TTupleProtocol oprot = (TTupleProtocol) prot;
+ BitSet optionals = new BitSet();
+ if (struct.isSetEmailNotifications()) {
+ optionals.set(0);
+ }
+ oprot.writeBitSet(optionals, 1);
+ if (struct.isSetEmailNotifications()) {
+ oprot.writeBool(struct.emailNotifications);
+ }
}
@Override
- public void read(org.apache.thrift.protocol.TProtocol prot, TInternalServerError struct) throws org.apache.thrift.TException {
+ public void read(org.apache.thrift.protocol.TProtocol prot, SatelliteUserConfig struct) throws org.apache.thrift.TException {
TTupleProtocol iprot = (TTupleProtocol) prot;
+ BitSet incoming = iprot.readBitSet(1);
+ if (incoming.get(0)) {
+ struct.emailNotifications = iprot.readBool();
+ struct.setEmailNotificationsIsSet(true);
+ }
}
}
diff --git a/src/main/java/org/openslx/bwlp/thrift/iface/TImageDataException.java b/src/main/java/org/openslx/bwlp/thrift/iface/TInvocationException.java
index c467e5f..e3cb257 100644
--- a/src/main/java/org/openslx/bwlp/thrift/iface/TImageDataException.java
+++ b/src/main/java/org/openslx/bwlp/thrift/iface/TInvocationException.java
@@ -32,30 +32,30 @@ import java.util.Arrays;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
-public class TImageDataException extends TException implements org.apache.thrift.TBase<TImageDataException, TImageDataException._Fields>, java.io.Serializable, Cloneable, Comparable<TImageDataException> {
- private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TImageDataException");
+public class TInvocationException extends TException implements org.apache.thrift.TBase<TInvocationException, TInvocationException._Fields>, java.io.Serializable, Cloneable, Comparable<TInvocationException> {
+ private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TInvocationException");
private static final org.apache.thrift.protocol.TField NUMBER_FIELD_DESC = new org.apache.thrift.protocol.TField("number", org.apache.thrift.protocol.TType.I32, (short)1);
private static final org.apache.thrift.protocol.TField MESSAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("message", org.apache.thrift.protocol.TType.STRING, (short)2);
private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
static {
- schemes.put(StandardScheme.class, new TImageDataExceptionStandardSchemeFactory());
- schemes.put(TupleScheme.class, new TImageDataExceptionTupleSchemeFactory());
+ schemes.put(StandardScheme.class, new TInvocationExceptionStandardSchemeFactory());
+ schemes.put(TupleScheme.class, new TInvocationExceptionTupleSchemeFactory());
}
/**
*
- * @see ImageDataError
+ * @see InvocationError
*/
- public ImageDataError number; // required
+ public InvocationError number; // required
public String message; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
/**
*
- * @see ImageDataError
+ * @see InvocationError
*/
NUMBER((short)1, "number"),
MESSAGE((short)2, "message");
@@ -121,18 +121,18 @@ public class TImageDataException extends TException implements org.apache.thrift
static {
Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
tmpMap.put(_Fields.NUMBER, new org.apache.thrift.meta_data.FieldMetaData("number", org.apache.thrift.TFieldRequirementType.DEFAULT,
- new org.apache.thrift.meta_data.EnumMetaData(org.apache.thrift.protocol.TType.ENUM, ImageDataError.class)));
+ new org.apache.thrift.meta_data.EnumMetaData(org.apache.thrift.protocol.TType.ENUM, InvocationError.class)));
tmpMap.put(_Fields.MESSAGE, new org.apache.thrift.meta_data.FieldMetaData("message", org.apache.thrift.TFieldRequirementType.DEFAULT,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
- org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(TImageDataException.class, metaDataMap);
+ org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(TInvocationException.class, metaDataMap);
}
- public TImageDataException() {
+ public TInvocationException() {
}
- public TImageDataException(
- ImageDataError number,
+ public TInvocationException(
+ InvocationError number,
String message)
{
this();
@@ -143,7 +143,7 @@ public class TImageDataException extends TException implements org.apache.thrift
/**
* Performs a deep copy on <i>other</i>.
*/
- public TImageDataException(TImageDataException other) {
+ public TInvocationException(TInvocationException other) {
if (other.isSetNumber()) {
this.number = other.number;
}
@@ -152,8 +152,8 @@ public class TImageDataException extends TException implements org.apache.thrift
}
}
- public TImageDataException deepCopy() {
- return new TImageDataException(this);
+ public TInvocationException deepCopy() {
+ return new TInvocationException(this);
}
@Override
@@ -164,17 +164,17 @@ public class TImageDataException extends TException implements org.apache.thrift
/**
*
- * @see ImageDataError
+ * @see InvocationError
*/
- public ImageDataError getNumber() {
+ public InvocationError getNumber() {
return this.number;
}
/**
*
- * @see ImageDataError
+ * @see InvocationError
*/
- public TImageDataException setNumber(ImageDataError number) {
+ public TInvocationException setNumber(InvocationError number) {
this.number = number;
return this;
}
@@ -198,7 +198,7 @@ public class TImageDataException extends TException implements org.apache.thrift
return this.message;
}
- public TImageDataException setMessage(String message) {
+ public TInvocationException setMessage(String message) {
this.message = message;
return this;
}
@@ -224,7 +224,7 @@ public class TImageDataException extends TException implements org.apache.thrift
if (value == null) {
unsetNumber();
} else {
- setNumber((ImageDataError)value);
+ setNumber((InvocationError)value);
}
break;
@@ -270,12 +270,12 @@ public class TImageDataException extends TException implements org.apache.thrift
public boolean equals(Object that) {
if (that == null)
return false;
- if (that instanceof TImageDataException)
- return this.equals((TImageDataException)that);
+ if (that instanceof TInvocationException)
+ return this.equals((TInvocationException)that);
return false;
}
- public boolean equals(TImageDataException that) {
+ public boolean equals(TInvocationException that) {
if (that == null)
return false;
@@ -306,7 +306,7 @@ public class TImageDataException extends TException implements org.apache.thrift
}
@Override
- public int compareTo(TImageDataException other) {
+ public int compareTo(TInvocationException other) {
if (!getClass().equals(other.getClass())) {
return getClass().getName().compareTo(other.getClass().getName());
}
@@ -350,7 +350,7 @@ public class TImageDataException extends TException implements org.apache.thrift
@Override
public String toString() {
- StringBuilder sb = new StringBuilder("TImageDataException(");
+ StringBuilder sb = new StringBuilder("TInvocationException(");
boolean first = true;
sb.append("number:");
@@ -393,15 +393,15 @@ public class TImageDataException extends TException implements org.apache.thrift
}
}
- private static class TImageDataExceptionStandardSchemeFactory implements SchemeFactory {
- public TImageDataExceptionStandardScheme getScheme() {
- return new TImageDataExceptionStandardScheme();
+ private static class TInvocationExceptionStandardSchemeFactory implements SchemeFactory {
+ public TInvocationExceptionStandardScheme getScheme() {
+ return new TInvocationExceptionStandardScheme();
}
}
- private static class TImageDataExceptionStandardScheme extends StandardScheme<TImageDataException> {
+ private static class TInvocationExceptionStandardScheme extends StandardScheme<TInvocationException> {
- public void read(org.apache.thrift.protocol.TProtocol iprot, TImageDataException struct) throws org.apache.thrift.TException {
+ public void read(org.apache.thrift.protocol.TProtocol iprot, TInvocationException struct) throws org.apache.thrift.TException {
org.apache.thrift.protocol.TField schemeField;
iprot.readStructBegin();
while (true)
@@ -413,7 +413,7 @@ public class TImageDataException extends TException implements org.apache.thrift
switch (schemeField.id) {
case 1: // NUMBER
if (schemeField.type == org.apache.thrift.protocol.TType.I32) {
- struct.number = ImageDataError.findByValue(iprot.readI32());
+ struct.number = InvocationError.findByValue(iprot.readI32());
struct.setNumberIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
@@ -438,7 +438,7 @@ public class TImageDataException extends TException implements org.apache.thrift
struct.validate();
}
- public void write(org.apache.thrift.protocol.TProtocol oprot, TImageDataException struct) throws org.apache.thrift.TException {
+ public void write(org.apache.thrift.protocol.TProtocol oprot, TInvocationException struct) throws org.apache.thrift.TException {
struct.validate();
oprot.writeStructBegin(STRUCT_DESC);
@@ -458,16 +458,16 @@ public class TImageDataException extends TException implements org.apache.thrift
}
- private static class TImageDataExceptionTupleSchemeFactory implements SchemeFactory {
- public TImageDataExceptionTupleScheme getScheme() {
- return new TImageDataExceptionTupleScheme();
+ private static class TInvocationExceptionTupleSchemeFactory implements SchemeFactory {
+ public TInvocationExceptionTupleScheme getScheme() {
+ return new TInvocationExceptionTupleScheme();
}
}
- private static class TImageDataExceptionTupleScheme extends TupleScheme<TImageDataException> {
+ private static class TInvocationExceptionTupleScheme extends TupleScheme<TInvocationException> {
@Override
- public void write(org.apache.thrift.protocol.TProtocol prot, TImageDataException struct) throws org.apache.thrift.TException {
+ public void write(org.apache.thrift.protocol.TProtocol prot, TInvocationException struct) throws org.apache.thrift.TException {
TTupleProtocol oprot = (TTupleProtocol) prot;
BitSet optionals = new BitSet();
if (struct.isSetNumber()) {
@@ -486,11 +486,11 @@ public class TImageDataException extends TException implements org.apache.thrift
}
@Override
- public void read(org.apache.thrift.protocol.TProtocol prot, TImageDataException struct) throws org.apache.thrift.TException {
+ public void read(org.apache.thrift.protocol.TProtocol prot, TInvocationException struct) throws org.apache.thrift.TException {
TTupleProtocol iprot = (TTupleProtocol) prot;
BitSet incoming = iprot.readBitSet(2);
if (incoming.get(0)) {
- struct.number = ImageDataError.findByValue(iprot.readI32());
+ struct.number = InvocationError.findByValue(iprot.readI32());
struct.setNumberIsSet(true);
}
if (incoming.get(1)) {