| Line 77... |
Line 77... |
| 77 |
* 2. Expected delay added by the category manager.
|
77 |
* 2. Expected delay added by the category manager.
|
| 78 |
* 3. Id of the billing warehouse which was finally picked up.
|
78 |
* 3. Id of the billing warehouse which was finally picked up.
|
| 79 |
*
|
79 |
*
|
| 80 |
* @param itemId
|
80 |
* @param itemId
|
| 81 |
* @param sourceId
|
81 |
* @param sourceId
|
| - |
|
82 |
* @param stateId
|
| 82 |
*/
|
83 |
*/
|
| 83 |
public List<Long> getItemAvailabilityAtLocation(long itemId, long sourceId) throws InventoryServiceException, org.apache.thrift.TException;
|
84 |
public List<Long> getItemAvailabilityAtLocation(long itemId, long sourceId, long stateId) throws InventoryServiceException, org.apache.thrift.TException;
|
| 84 |
|
85 |
|
| 85 |
public List<Warehouse> getAllWarehouses(boolean isActive) throws InventoryServiceException, org.apache.thrift.TException;
|
86 |
public List<Warehouse> getAllWarehouses(boolean isActive) throws InventoryServiceException, org.apache.thrift.TException;
|
| 86 |
|
87 |
|
| 87 |
/**
|
88 |
/**
|
| 88 |
* Returns the warehouse with the given id.
|
89 |
* Returns the warehouse with the given id.
|
| Line 415... |
Line 416... |
| 415 |
|
416 |
|
| 416 |
public void getItemInventoryByItemId(long item_id, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getItemInventoryByItemId_call> resultHandler) throws org.apache.thrift.TException;
|
417 |
public void getItemInventoryByItemId(long item_id, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getItemInventoryByItemId_call> resultHandler) throws org.apache.thrift.TException;
|
| 417 |
|
418 |
|
| 418 |
public void getItemAvailibilityAtWarehouse(long warehouse_id, long item_id, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getItemAvailibilityAtWarehouse_call> resultHandler) throws org.apache.thrift.TException;
|
419 |
public void getItemAvailibilityAtWarehouse(long warehouse_id, long item_id, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getItemAvailibilityAtWarehouse_call> resultHandler) throws org.apache.thrift.TException;
|
| 419 |
|
420 |
|
| 420 |
public void getItemAvailabilityAtLocation(long itemId, long sourceId, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getItemAvailabilityAtLocation_call> resultHandler) throws org.apache.thrift.TException;
|
421 |
public void getItemAvailabilityAtLocation(long itemId, long sourceId, long stateId, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getItemAvailabilityAtLocation_call> resultHandler) throws org.apache.thrift.TException;
|
| 421 |
|
422 |
|
| 422 |
public void getAllWarehouses(boolean isActive, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getAllWarehouses_call> resultHandler) throws org.apache.thrift.TException;
|
423 |
public void getAllWarehouses(boolean isActive, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getAllWarehouses_call> resultHandler) throws org.apache.thrift.TException;
|
| 423 |
|
424 |
|
| 424 |
public void getWarehouse(long warehouse_id, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getWarehouse_call> resultHandler) throws org.apache.thrift.TException;
|
425 |
public void getWarehouse(long warehouse_id, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getWarehouse_call> resultHandler) throws org.apache.thrift.TException;
|
| 425 |
|
426 |
|
| Line 800... |
Line 801... |
| 800 |
throw result.cex;
|
801 |
throw result.cex;
|
| 801 |
}
|
802 |
}
|
| 802 |
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getItemAvailibilityAtWarehouse failed: unknown result");
|
803 |
throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getItemAvailibilityAtWarehouse failed: unknown result");
|
| 803 |
}
|
804 |
}
|
| 804 |
|
805 |
|
| 805 |
public List<Long> getItemAvailabilityAtLocation(long itemId, long sourceId) throws InventoryServiceException, org.apache.thrift.TException
|
806 |
public List<Long> getItemAvailabilityAtLocation(long itemId, long sourceId, long stateId) throws InventoryServiceException, org.apache.thrift.TException
|
| 806 |
{
|
807 |
{
|
| 807 |
send_getItemAvailabilityAtLocation(itemId, sourceId);
|
808 |
send_getItemAvailabilityAtLocation(itemId, sourceId, stateId);
|
| 808 |
return recv_getItemAvailabilityAtLocation();
|
809 |
return recv_getItemAvailabilityAtLocation();
|
| 809 |
}
|
810 |
}
|
| 810 |
|
811 |
|
| 811 |
public void send_getItemAvailabilityAtLocation(long itemId, long sourceId) throws org.apache.thrift.TException
|
812 |
public void send_getItemAvailabilityAtLocation(long itemId, long sourceId, long stateId) throws org.apache.thrift.TException
|
| 812 |
{
|
813 |
{
|
| 813 |
getItemAvailabilityAtLocation_args args = new getItemAvailabilityAtLocation_args();
|
814 |
getItemAvailabilityAtLocation_args args = new getItemAvailabilityAtLocation_args();
|
| 814 |
args.setItemId(itemId);
|
815 |
args.setItemId(itemId);
|
| 815 |
args.setSourceId(sourceId);
|
816 |
args.setSourceId(sourceId);
|
| - |
|
817 |
args.setStateId(stateId);
|
| 816 |
sendBase("getItemAvailabilityAtLocation", args);
|
818 |
sendBase("getItemAvailabilityAtLocation", args);
|
| 817 |
}
|
819 |
}
|
| 818 |
|
820 |
|
| 819 |
public List<Long> recv_getItemAvailabilityAtLocation() throws InventoryServiceException, org.apache.thrift.TException
|
821 |
public List<Long> recv_getItemAvailabilityAtLocation() throws InventoryServiceException, org.apache.thrift.TException
|
| 820 |
{
|
822 |
{
|
| Line 2966... |
Line 2968... |
| 2966 |
org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport);
|
2968 |
org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport);
|
| 2967 |
return (new Client(prot)).recv_getItemAvailibilityAtWarehouse();
|
2969 |
return (new Client(prot)).recv_getItemAvailibilityAtWarehouse();
|
| 2968 |
}
|
2970 |
}
|
| 2969 |
}
|
2971 |
}
|
| 2970 |
|
2972 |
|
| 2971 |
public void getItemAvailabilityAtLocation(long itemId, long sourceId, org.apache.thrift.async.AsyncMethodCallback<getItemAvailabilityAtLocation_call> resultHandler) throws org.apache.thrift.TException {
|
2973 |
public void getItemAvailabilityAtLocation(long itemId, long sourceId, long stateId, org.apache.thrift.async.AsyncMethodCallback<getItemAvailabilityAtLocation_call> resultHandler) throws org.apache.thrift.TException {
|
| 2972 |
checkReady();
|
2974 |
checkReady();
|
| 2973 |
getItemAvailabilityAtLocation_call method_call = new getItemAvailabilityAtLocation_call(itemId, sourceId, resultHandler, this, ___protocolFactory, ___transport);
|
2975 |
getItemAvailabilityAtLocation_call method_call = new getItemAvailabilityAtLocation_call(itemId, sourceId, stateId, resultHandler, this, ___protocolFactory, ___transport);
|
| 2974 |
this.___currentMethod = method_call;
|
2976 |
this.___currentMethod = method_call;
|
| 2975 |
___manager.call(method_call);
|
2977 |
___manager.call(method_call);
|
| 2976 |
}
|
2978 |
}
|
| 2977 |
|
2979 |
|
| 2978 |
public static class getItemAvailabilityAtLocation_call extends org.apache.thrift.async.TAsyncMethodCall {
|
2980 |
public static class getItemAvailabilityAtLocation_call extends org.apache.thrift.async.TAsyncMethodCall {
|
| 2979 |
private long itemId;
|
2981 |
private long itemId;
|
| 2980 |
private long sourceId;
|
2982 |
private long sourceId;
|
| - |
|
2983 |
private long stateId;
|
| 2981 |
public getItemAvailabilityAtLocation_call(long itemId, long sourceId, org.apache.thrift.async.AsyncMethodCallback<getItemAvailabilityAtLocation_call> resultHandler, org.apache.thrift.async.TAsyncClient client, org.apache.thrift.protocol.TProtocolFactory protocolFactory, org.apache.thrift.transport.TNonblockingTransport transport) throws org.apache.thrift.TException {
|
2984 |
public getItemAvailabilityAtLocation_call(long itemId, long sourceId, long stateId, org.apache.thrift.async.AsyncMethodCallback<getItemAvailabilityAtLocation_call> resultHandler, org.apache.thrift.async.TAsyncClient client, org.apache.thrift.protocol.TProtocolFactory protocolFactory, org.apache.thrift.transport.TNonblockingTransport transport) throws org.apache.thrift.TException {
|
| 2982 |
super(client, protocolFactory, transport, resultHandler, false);
|
2985 |
super(client, protocolFactory, transport, resultHandler, false);
|
| 2983 |
this.itemId = itemId;
|
2986 |
this.itemId = itemId;
|
| 2984 |
this.sourceId = sourceId;
|
2987 |
this.sourceId = sourceId;
|
| - |
|
2988 |
this.stateId = stateId;
|
| 2985 |
}
|
2989 |
}
|
| 2986 |
|
2990 |
|
| 2987 |
public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException {
|
2991 |
public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException {
|
| 2988 |
prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getItemAvailabilityAtLocation", org.apache.thrift.protocol.TMessageType.CALL, 0));
|
2992 |
prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getItemAvailabilityAtLocation", org.apache.thrift.protocol.TMessageType.CALL, 0));
|
| 2989 |
getItemAvailabilityAtLocation_args args = new getItemAvailabilityAtLocation_args();
|
2993 |
getItemAvailabilityAtLocation_args args = new getItemAvailabilityAtLocation_args();
|
| 2990 |
args.setItemId(itemId);
|
2994 |
args.setItemId(itemId);
|
| 2991 |
args.setSourceId(sourceId);
|
2995 |
args.setSourceId(sourceId);
|
| - |
|
2996 |
args.setStateId(stateId);
|
| 2992 |
args.write(prot);
|
2997 |
args.write(prot);
|
| 2993 |
prot.writeMessageEnd();
|
2998 |
prot.writeMessageEnd();
|
| 2994 |
}
|
2999 |
}
|
| 2995 |
|
3000 |
|
| 2996 |
public List<Long> getResult() throws InventoryServiceException, org.apache.thrift.TException {
|
3001 |
public List<Long> getResult() throws InventoryServiceException, org.apache.thrift.TException {
|
| Line 5934... |
Line 5939... |
| 5934 |
}
|
5939 |
}
|
| 5935 |
|
5940 |
|
| 5936 |
protected getItemAvailabilityAtLocation_result getResult(I iface, getItemAvailabilityAtLocation_args args) throws org.apache.thrift.TException {
|
5941 |
protected getItemAvailabilityAtLocation_result getResult(I iface, getItemAvailabilityAtLocation_args args) throws org.apache.thrift.TException {
|
| 5937 |
getItemAvailabilityAtLocation_result result = new getItemAvailabilityAtLocation_result();
|
5942 |
getItemAvailabilityAtLocation_result result = new getItemAvailabilityAtLocation_result();
|
| 5938 |
try {
|
5943 |
try {
|
| 5939 |
result.success = iface.getItemAvailabilityAtLocation(args.itemId, args.sourceId);
|
5944 |
result.success = iface.getItemAvailabilityAtLocation(args.itemId, args.sourceId, args.stateId);
|
| 5940 |
} catch (InventoryServiceException isex) {
|
5945 |
} catch (InventoryServiceException isex) {
|
| 5941 |
result.isex = isex;
|
5946 |
result.isex = isex;
|
| 5942 |
}
|
5947 |
}
|
| 5943 |
return result;
|
5948 |
return result;
|
| 5944 |
}
|
5949 |
}
|
| Line 7952... |
Line 7957... |
| 7952 |
}
|
7957 |
}
|
| 7953 |
}
|
7958 |
}
|
| 7954 |
|
7959 |
|
| 7955 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
7960 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
| 7956 |
try {
|
7961 |
try {
|
| 7957 |
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
|
- |
|
| 7958 |
__isset_bit_vector = new BitSet(1);
|
- |
|
| 7959 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
7962 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
| 7960 |
} catch (org.apache.thrift.TException te) {
|
7963 |
} catch (org.apache.thrift.TException te) {
|
| 7961 |
throw new java.io.IOException(te);
|
7964 |
throw new java.io.IOException(te);
|
| 7962 |
}
|
7965 |
}
|
| 7963 |
}
|
7966 |
}
|
| Line 8630... |
Line 8633... |
| 8630 |
}
|
8633 |
}
|
| 8631 |
}
|
8634 |
}
|
| 8632 |
|
8635 |
|
| 8633 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
8636 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
| 8634 |
try {
|
8637 |
try {
|
| 8635 |
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
|
- |
|
| 8636 |
__isset_bit_vector = new BitSet(1);
|
- |
|
| 8637 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
8638 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
| 8638 |
} catch (org.apache.thrift.TException te) {
|
8639 |
} catch (org.apache.thrift.TException te) {
|
| 8639 |
throw new java.io.IOException(te);
|
8640 |
throw new java.io.IOException(te);
|
| 8640 |
}
|
8641 |
}
|
| 8641 |
}
|
8642 |
}
|
| Line 9952... |
Line 9953... |
| 9952 |
}
|
9953 |
}
|
| 9953 |
}
|
9954 |
}
|
| 9954 |
|
9955 |
|
| 9955 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
9956 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
| 9956 |
try {
|
9957 |
try {
|
| - |
|
9958 |
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
|
| - |
|
9959 |
__isset_bit_vector = new BitSet(1);
|
| 9957 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
9960 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
| 9958 |
} catch (org.apache.thrift.TException te) {
|
9961 |
} catch (org.apache.thrift.TException te) {
|
| 9959 |
throw new java.io.IOException(te);
|
9962 |
throw new java.io.IOException(te);
|
| 9960 |
}
|
9963 |
}
|
| 9961 |
}
|
9964 |
}
|
| Line 13022... |
Line 13025... |
| 13022 |
}
|
13025 |
}
|
| 13023 |
}
|
13026 |
}
|
| 13024 |
|
13027 |
|
| 13025 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
13028 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
| 13026 |
try {
|
13029 |
try {
|
| 13027 |
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
|
- |
|
| 13028 |
__isset_bit_vector = new BitSet(1);
|
- |
|
| 13029 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
13030 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
| 13030 |
} catch (org.apache.thrift.TException te) {
|
13031 |
} catch (org.apache.thrift.TException te) {
|
| 13031 |
throw new java.io.IOException(te);
|
13032 |
throw new java.io.IOException(te);
|
| 13032 |
}
|
13033 |
}
|
| 13033 |
}
|
13034 |
}
|
| Line 13037... |
Line 13038... |
| 13037 |
public static class getItemAvailabilityAtLocation_args implements org.apache.thrift.TBase<getItemAvailabilityAtLocation_args, getItemAvailabilityAtLocation_args._Fields>, java.io.Serializable, Cloneable {
|
13038 |
public static class getItemAvailabilityAtLocation_args implements org.apache.thrift.TBase<getItemAvailabilityAtLocation_args, getItemAvailabilityAtLocation_args._Fields>, java.io.Serializable, Cloneable {
|
| 13038 |
private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getItemAvailabilityAtLocation_args");
|
13039 |
private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getItemAvailabilityAtLocation_args");
|
| 13039 |
|
13040 |
|
| 13040 |
private static final org.apache.thrift.protocol.TField ITEM_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("itemId", org.apache.thrift.protocol.TType.I64, (short)1);
|
13041 |
private static final org.apache.thrift.protocol.TField ITEM_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("itemId", org.apache.thrift.protocol.TType.I64, (short)1);
|
| 13041 |
private static final org.apache.thrift.protocol.TField SOURCE_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("sourceId", org.apache.thrift.protocol.TType.I64, (short)2);
|
13042 |
private static final org.apache.thrift.protocol.TField SOURCE_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("sourceId", org.apache.thrift.protocol.TType.I64, (short)2);
|
| - |
|
13043 |
private static final org.apache.thrift.protocol.TField STATE_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("stateId", org.apache.thrift.protocol.TType.I64, (short)3);
|
| 13042 |
|
13044 |
|
| 13043 |
private long itemId; // required
|
13045 |
private long itemId; // required
|
| 13044 |
private long sourceId; // required
|
13046 |
private long sourceId; // required
|
| - |
|
13047 |
private long stateId; // required
|
| 13045 |
|
13048 |
|
| 13046 |
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
|
13049 |
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
|
| 13047 |
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
|
13050 |
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
|
| 13048 |
ITEM_ID((short)1, "itemId"),
|
13051 |
ITEM_ID((short)1, "itemId"),
|
| 13049 |
SOURCE_ID((short)2, "sourceId");
|
13052 |
SOURCE_ID((short)2, "sourceId"),
|
| - |
|
13053 |
STATE_ID((short)3, "stateId");
|
| 13050 |
|
13054 |
|
| 13051 |
private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
|
13055 |
private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
|
| 13052 |
|
13056 |
|
| 13053 |
static {
|
13057 |
static {
|
| 13054 |
for (_Fields field : EnumSet.allOf(_Fields.class)) {
|
13058 |
for (_Fields field : EnumSet.allOf(_Fields.class)) {
|
| Line 13063... |
Line 13067... |
| 13063 |
switch(fieldId) {
|
13067 |
switch(fieldId) {
|
| 13064 |
case 1: // ITEM_ID
|
13068 |
case 1: // ITEM_ID
|
| 13065 |
return ITEM_ID;
|
13069 |
return ITEM_ID;
|
| 13066 |
case 2: // SOURCE_ID
|
13070 |
case 2: // SOURCE_ID
|
| 13067 |
return SOURCE_ID;
|
13071 |
return SOURCE_ID;
|
| - |
|
13072 |
case 3: // STATE_ID
|
| - |
|
13073 |
return STATE_ID;
|
| 13068 |
default:
|
13074 |
default:
|
| 13069 |
return null;
|
13075 |
return null;
|
| 13070 |
}
|
13076 |
}
|
| 13071 |
}
|
13077 |
}
|
| 13072 |
|
13078 |
|
| Line 13105... |
Line 13111... |
| 13105 |
}
|
13111 |
}
|
| 13106 |
|
13112 |
|
| 13107 |
// isset id assignments
|
13113 |
// isset id assignments
|
| 13108 |
private static final int __ITEMID_ISSET_ID = 0;
|
13114 |
private static final int __ITEMID_ISSET_ID = 0;
|
| 13109 |
private static final int __SOURCEID_ISSET_ID = 1;
|
13115 |
private static final int __SOURCEID_ISSET_ID = 1;
|
| - |
|
13116 |
private static final int __STATEID_ISSET_ID = 2;
|
| 13110 |
private BitSet __isset_bit_vector = new BitSet(2);
|
13117 |
private BitSet __isset_bit_vector = new BitSet(3);
|
| 13111 |
|
13118 |
|
| 13112 |
public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
|
13119 |
public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
|
| 13113 |
static {
|
13120 |
static {
|
| 13114 |
Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
|
13121 |
Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
|
| 13115 |
tmpMap.put(_Fields.ITEM_ID, new org.apache.thrift.meta_data.FieldMetaData("itemId", org.apache.thrift.TFieldRequirementType.DEFAULT,
|
13122 |
tmpMap.put(_Fields.ITEM_ID, new org.apache.thrift.meta_data.FieldMetaData("itemId", org.apache.thrift.TFieldRequirementType.DEFAULT,
|
| 13116 |
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));
|
13123 |
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));
|
| 13117 |
tmpMap.put(_Fields.SOURCE_ID, new org.apache.thrift.meta_data.FieldMetaData("sourceId", org.apache.thrift.TFieldRequirementType.DEFAULT,
|
13124 |
tmpMap.put(_Fields.SOURCE_ID, new org.apache.thrift.meta_data.FieldMetaData("sourceId", org.apache.thrift.TFieldRequirementType.DEFAULT,
|
| 13118 |
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));
|
13125 |
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));
|
| - |
|
13126 |
tmpMap.put(_Fields.STATE_ID, new org.apache.thrift.meta_data.FieldMetaData("stateId", org.apache.thrift.TFieldRequirementType.DEFAULT,
|
| - |
|
13127 |
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)));
|
| 13119 |
metaDataMap = Collections.unmodifiableMap(tmpMap);
|
13128 |
metaDataMap = Collections.unmodifiableMap(tmpMap);
|
| 13120 |
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getItemAvailabilityAtLocation_args.class, metaDataMap);
|
13129 |
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getItemAvailabilityAtLocation_args.class, metaDataMap);
|
| 13121 |
}
|
13130 |
}
|
| 13122 |
|
13131 |
|
| 13123 |
public getItemAvailabilityAtLocation_args() {
|
13132 |
public getItemAvailabilityAtLocation_args() {
|
| 13124 |
}
|
13133 |
}
|
| 13125 |
|
13134 |
|
| 13126 |
public getItemAvailabilityAtLocation_args(
|
13135 |
public getItemAvailabilityAtLocation_args(
|
| 13127 |
long itemId,
|
13136 |
long itemId,
|
| 13128 |
long sourceId)
|
13137 |
long sourceId,
|
| - |
|
13138 |
long stateId)
|
| 13129 |
{
|
13139 |
{
|
| 13130 |
this();
|
13140 |
this();
|
| 13131 |
this.itemId = itemId;
|
13141 |
this.itemId = itemId;
|
| 13132 |
setItemIdIsSet(true);
|
13142 |
setItemIdIsSet(true);
|
| 13133 |
this.sourceId = sourceId;
|
13143 |
this.sourceId = sourceId;
|
| 13134 |
setSourceIdIsSet(true);
|
13144 |
setSourceIdIsSet(true);
|
| - |
|
13145 |
this.stateId = stateId;
|
| - |
|
13146 |
setStateIdIsSet(true);
|
| 13135 |
}
|
13147 |
}
|
| 13136 |
|
13148 |
|
| 13137 |
/**
|
13149 |
/**
|
| 13138 |
* Performs a deep copy on <i>other</i>.
|
13150 |
* Performs a deep copy on <i>other</i>.
|
| 13139 |
*/
|
13151 |
*/
|
| 13140 |
public getItemAvailabilityAtLocation_args(getItemAvailabilityAtLocation_args other) {
|
13152 |
public getItemAvailabilityAtLocation_args(getItemAvailabilityAtLocation_args other) {
|
| 13141 |
__isset_bit_vector.clear();
|
13153 |
__isset_bit_vector.clear();
|
| 13142 |
__isset_bit_vector.or(other.__isset_bit_vector);
|
13154 |
__isset_bit_vector.or(other.__isset_bit_vector);
|
| 13143 |
this.itemId = other.itemId;
|
13155 |
this.itemId = other.itemId;
|
| 13144 |
this.sourceId = other.sourceId;
|
13156 |
this.sourceId = other.sourceId;
|
| - |
|
13157 |
this.stateId = other.stateId;
|
| 13145 |
}
|
13158 |
}
|
| 13146 |
|
13159 |
|
| 13147 |
public getItemAvailabilityAtLocation_args deepCopy() {
|
13160 |
public getItemAvailabilityAtLocation_args deepCopy() {
|
| 13148 |
return new getItemAvailabilityAtLocation_args(this);
|
13161 |
return new getItemAvailabilityAtLocation_args(this);
|
| 13149 |
}
|
13162 |
}
|
| Line 13152... |
Line 13165... |
| 13152 |
public void clear() {
|
13165 |
public void clear() {
|
| 13153 |
setItemIdIsSet(false);
|
13166 |
setItemIdIsSet(false);
|
| 13154 |
this.itemId = 0;
|
13167 |
this.itemId = 0;
|
| 13155 |
setSourceIdIsSet(false);
|
13168 |
setSourceIdIsSet(false);
|
| 13156 |
this.sourceId = 0;
|
13169 |
this.sourceId = 0;
|
| - |
|
13170 |
setStateIdIsSet(false);
|
| - |
|
13171 |
this.stateId = 0;
|
| 13157 |
}
|
13172 |
}
|
| 13158 |
|
13173 |
|
| 13159 |
public long getItemId() {
|
13174 |
public long getItemId() {
|
| 13160 |
return this.itemId;
|
13175 |
return this.itemId;
|
| 13161 |
}
|
13176 |
}
|
| Line 13198... |
Line 13213... |
| 13198 |
|
13213 |
|
| 13199 |
public void setSourceIdIsSet(boolean value) {
|
13214 |
public void setSourceIdIsSet(boolean value) {
|
| 13200 |
__isset_bit_vector.set(__SOURCEID_ISSET_ID, value);
|
13215 |
__isset_bit_vector.set(__SOURCEID_ISSET_ID, value);
|
| 13201 |
}
|
13216 |
}
|
| 13202 |
|
13217 |
|
| - |
|
13218 |
public long getStateId() {
|
| - |
|
13219 |
return this.stateId;
|
| - |
|
13220 |
}
|
| - |
|
13221 |
|
| - |
|
13222 |
public void setStateId(long stateId) {
|
| - |
|
13223 |
this.stateId = stateId;
|
| - |
|
13224 |
setStateIdIsSet(true);
|
| - |
|
13225 |
}
|
| - |
|
13226 |
|
| - |
|
13227 |
public void unsetStateId() {
|
| - |
|
13228 |
__isset_bit_vector.clear(__STATEID_ISSET_ID);
|
| - |
|
13229 |
}
|
| - |
|
13230 |
|
| - |
|
13231 |
/** Returns true if field stateId is set (has been assigned a value) and false otherwise */
|
| - |
|
13232 |
public boolean isSetStateId() {
|
| - |
|
13233 |
return __isset_bit_vector.get(__STATEID_ISSET_ID);
|
| - |
|
13234 |
}
|
| - |
|
13235 |
|
| - |
|
13236 |
public void setStateIdIsSet(boolean value) {
|
| - |
|
13237 |
__isset_bit_vector.set(__STATEID_ISSET_ID, value);
|
| - |
|
13238 |
}
|
| - |
|
13239 |
|
| 13203 |
public void setFieldValue(_Fields field, Object value) {
|
13240 |
public void setFieldValue(_Fields field, Object value) {
|
| 13204 |
switch (field) {
|
13241 |
switch (field) {
|
| 13205 |
case ITEM_ID:
|
13242 |
case ITEM_ID:
|
| 13206 |
if (value == null) {
|
13243 |
if (value == null) {
|
| 13207 |
unsetItemId();
|
13244 |
unsetItemId();
|
| Line 13216... |
Line 13253... |
| 13216 |
} else {
|
13253 |
} else {
|
| 13217 |
setSourceId((Long)value);
|
13254 |
setSourceId((Long)value);
|
| 13218 |
}
|
13255 |
}
|
| 13219 |
break;
|
13256 |
break;
|
| 13220 |
|
13257 |
|
| - |
|
13258 |
case STATE_ID:
|
| - |
|
13259 |
if (value == null) {
|
| - |
|
13260 |
unsetStateId();
|
| - |
|
13261 |
} else {
|
| - |
|
13262 |
setStateId((Long)value);
|
| - |
|
13263 |
}
|
| - |
|
13264 |
break;
|
| - |
|
13265 |
|
| 13221 |
}
|
13266 |
}
|
| 13222 |
}
|
13267 |
}
|
| 13223 |
|
13268 |
|
| 13224 |
public Object getFieldValue(_Fields field) {
|
13269 |
public Object getFieldValue(_Fields field) {
|
| 13225 |
switch (field) {
|
13270 |
switch (field) {
|
| Line 13227... |
Line 13272... |
| 13227 |
return Long.valueOf(getItemId());
|
13272 |
return Long.valueOf(getItemId());
|
| 13228 |
|
13273 |
|
| 13229 |
case SOURCE_ID:
|
13274 |
case SOURCE_ID:
|
| 13230 |
return Long.valueOf(getSourceId());
|
13275 |
return Long.valueOf(getSourceId());
|
| 13231 |
|
13276 |
|
| - |
|
13277 |
case STATE_ID:
|
| - |
|
13278 |
return Long.valueOf(getStateId());
|
| - |
|
13279 |
|
| 13232 |
}
|
13280 |
}
|
| 13233 |
throw new IllegalStateException();
|
13281 |
throw new IllegalStateException();
|
| 13234 |
}
|
13282 |
}
|
| 13235 |
|
13283 |
|
| 13236 |
/** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
|
13284 |
/** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
|
| Line 13242... |
Line 13290... |
| 13242 |
switch (field) {
|
13290 |
switch (field) {
|
| 13243 |
case ITEM_ID:
|
13291 |
case ITEM_ID:
|
| 13244 |
return isSetItemId();
|
13292 |
return isSetItemId();
|
| 13245 |
case SOURCE_ID:
|
13293 |
case SOURCE_ID:
|
| 13246 |
return isSetSourceId();
|
13294 |
return isSetSourceId();
|
| - |
|
13295 |
case STATE_ID:
|
| - |
|
13296 |
return isSetStateId();
|
| 13247 |
}
|
13297 |
}
|
| 13248 |
throw new IllegalStateException();
|
13298 |
throw new IllegalStateException();
|
| 13249 |
}
|
13299 |
}
|
| 13250 |
|
13300 |
|
| 13251 |
@Override
|
13301 |
@Override
|
| Line 13277... |
Line 13327... |
| 13277 |
return false;
|
13327 |
return false;
|
| 13278 |
if (this.sourceId != that.sourceId)
|
13328 |
if (this.sourceId != that.sourceId)
|
| 13279 |
return false;
|
13329 |
return false;
|
| 13280 |
}
|
13330 |
}
|
| 13281 |
|
13331 |
|
| - |
|
13332 |
boolean this_present_stateId = true;
|
| - |
|
13333 |
boolean that_present_stateId = true;
|
| - |
|
13334 |
if (this_present_stateId || that_present_stateId) {
|
| - |
|
13335 |
if (!(this_present_stateId && that_present_stateId))
|
| - |
|
13336 |
return false;
|
| - |
|
13337 |
if (this.stateId != that.stateId)
|
| - |
|
13338 |
return false;
|
| - |
|
13339 |
}
|
| - |
|
13340 |
|
| 13282 |
return true;
|
13341 |
return true;
|
| 13283 |
}
|
13342 |
}
|
| 13284 |
|
13343 |
|
| 13285 |
@Override
|
13344 |
@Override
|
| 13286 |
public int hashCode() {
|
13345 |
public int hashCode() {
|
| Line 13313... |
Line 13372... |
| 13313 |
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.sourceId, typedOther.sourceId);
|
13372 |
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.sourceId, typedOther.sourceId);
|
| 13314 |
if (lastComparison != 0) {
|
13373 |
if (lastComparison != 0) {
|
| 13315 |
return lastComparison;
|
13374 |
return lastComparison;
|
| 13316 |
}
|
13375 |
}
|
| 13317 |
}
|
13376 |
}
|
| - |
|
13377 |
lastComparison = Boolean.valueOf(isSetStateId()).compareTo(typedOther.isSetStateId());
|
| - |
|
13378 |
if (lastComparison != 0) {
|
| - |
|
13379 |
return lastComparison;
|
| - |
|
13380 |
}
|
| - |
|
13381 |
if (isSetStateId()) {
|
| - |
|
13382 |
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.stateId, typedOther.stateId);
|
| - |
|
13383 |
if (lastComparison != 0) {
|
| - |
|
13384 |
return lastComparison;
|
| - |
|
13385 |
}
|
| - |
|
13386 |
}
|
| 13318 |
return 0;
|
13387 |
return 0;
|
| 13319 |
}
|
13388 |
}
|
| 13320 |
|
13389 |
|
| 13321 |
public _Fields fieldForId(int fieldId) {
|
13390 |
public _Fields fieldForId(int fieldId) {
|
| 13322 |
return _Fields.findByThriftId(fieldId);
|
13391 |
return _Fields.findByThriftId(fieldId);
|
| Line 13346... |
Line 13415... |
| 13346 |
setSourceIdIsSet(true);
|
13415 |
setSourceIdIsSet(true);
|
| 13347 |
} else {
|
13416 |
} else {
|
| 13348 |
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
|
13417 |
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
|
| 13349 |
}
|
13418 |
}
|
| 13350 |
break;
|
13419 |
break;
|
| - |
|
13420 |
case 3: // STATE_ID
|
| - |
|
13421 |
if (field.type == org.apache.thrift.protocol.TType.I64) {
|
| - |
|
13422 |
this.stateId = iprot.readI64();
|
| - |
|
13423 |
setStateIdIsSet(true);
|
| - |
|
13424 |
} else {
|
| - |
|
13425 |
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
|
| - |
|
13426 |
}
|
| - |
|
13427 |
break;
|
| 13351 |
default:
|
13428 |
default:
|
| 13352 |
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
|
13429 |
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
|
| 13353 |
}
|
13430 |
}
|
| 13354 |
iprot.readFieldEnd();
|
13431 |
iprot.readFieldEnd();
|
| 13355 |
}
|
13432 |
}
|
| Line 13365... |
Line 13442... |
| 13365 |
oprot.writeI64(this.itemId);
|
13442 |
oprot.writeI64(this.itemId);
|
| 13366 |
oprot.writeFieldEnd();
|
13443 |
oprot.writeFieldEnd();
|
| 13367 |
oprot.writeFieldBegin(SOURCE_ID_FIELD_DESC);
|
13444 |
oprot.writeFieldBegin(SOURCE_ID_FIELD_DESC);
|
| 13368 |
oprot.writeI64(this.sourceId);
|
13445 |
oprot.writeI64(this.sourceId);
|
| 13369 |
oprot.writeFieldEnd();
|
13446 |
oprot.writeFieldEnd();
|
| - |
|
13447 |
oprot.writeFieldBegin(STATE_ID_FIELD_DESC);
|
| - |
|
13448 |
oprot.writeI64(this.stateId);
|
| - |
|
13449 |
oprot.writeFieldEnd();
|
| 13370 |
oprot.writeFieldStop();
|
13450 |
oprot.writeFieldStop();
|
| 13371 |
oprot.writeStructEnd();
|
13451 |
oprot.writeStructEnd();
|
| 13372 |
}
|
13452 |
}
|
| 13373 |
|
13453 |
|
| 13374 |
@Override
|
13454 |
@Override
|
| Line 13381... |
Line 13461... |
| 13381 |
first = false;
|
13461 |
first = false;
|
| 13382 |
if (!first) sb.append(", ");
|
13462 |
if (!first) sb.append(", ");
|
| 13383 |
sb.append("sourceId:");
|
13463 |
sb.append("sourceId:");
|
| 13384 |
sb.append(this.sourceId);
|
13464 |
sb.append(this.sourceId);
|
| 13385 |
first = false;
|
13465 |
first = false;
|
| - |
|
13466 |
if (!first) sb.append(", ");
|
| - |
|
13467 |
sb.append("stateId:");
|
| - |
|
13468 |
sb.append(this.stateId);
|
| - |
|
13469 |
first = false;
|
| 13386 |
sb.append(")");
|
13470 |
sb.append(")");
|
| 13387 |
return sb.toString();
|
13471 |
return sb.toString();
|
| 13388 |
}
|
13472 |
}
|
| 13389 |
|
13473 |
|
| 13390 |
public void validate() throws org.apache.thrift.TException {
|
13474 |
public void validate() throws org.apache.thrift.TException {
|
| Line 14109... |
Line 14193... |
| 14109 |
}
|
14193 |
}
|
| 14110 |
}
|
14194 |
}
|
| 14111 |
|
14195 |
|
| 14112 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
14196 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
| 14113 |
try {
|
14197 |
try {
|
| - |
|
14198 |
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
|
| - |
|
14199 |
__isset_bit_vector = new BitSet(1);
|
| 14114 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
14200 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
| 14115 |
} catch (org.apache.thrift.TException te) {
|
14201 |
} catch (org.apache.thrift.TException te) {
|
| 14116 |
throw new java.io.IOException(te);
|
14202 |
throw new java.io.IOException(te);
|
| 14117 |
}
|
14203 |
}
|
| 14118 |
}
|
14204 |
}
|
| Line 16457... |
Line 16543... |
| 16457 |
}
|
16543 |
}
|
| 16458 |
}
|
16544 |
}
|
| 16459 |
|
16545 |
|
| 16460 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
16546 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
| 16461 |
try {
|
16547 |
try {
|
| 16462 |
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
|
- |
|
| 16463 |
__isset_bit_vector = new BitSet(1);
|
- |
|
| 16464 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
16548 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
| 16465 |
} catch (org.apache.thrift.TException te) {
|
16549 |
} catch (org.apache.thrift.TException te) {
|
| 16466 |
throw new java.io.IOException(te);
|
16550 |
throw new java.io.IOException(te);
|
| 16467 |
}
|
16551 |
}
|
| 16468 |
}
|
16552 |
}
|
| Line 16752... |
Line 16836... |
| 16752 |
}
|
16836 |
}
|
| 16753 |
}
|
16837 |
}
|
| 16754 |
|
16838 |
|
| 16755 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
16839 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
| 16756 |
try {
|
16840 |
try {
|
| 16757 |
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
|
- |
|
| 16758 |
__isset_bit_vector = new BitSet(1);
|
- |
|
| 16759 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
16841 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
| 16760 |
} catch (org.apache.thrift.TException te) {
|
16842 |
} catch (org.apache.thrift.TException te) {
|
| 16761 |
throw new java.io.IOException(te);
|
16843 |
throw new java.io.IOException(te);
|
| 16762 |
}
|
16844 |
}
|
| 16763 |
}
|
16845 |
}
|
| Line 17544... |
Line 17626... |
| 17544 |
}
|
17626 |
}
|
| 17545 |
}
|
17627 |
}
|
| 17546 |
|
17628 |
|
| 17547 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
17629 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
| 17548 |
try {
|
17630 |
try {
|
| 17549 |
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
|
- |
|
| 17550 |
__isset_bit_vector = new BitSet(1);
|
- |
|
| 17551 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
17631 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
| 17552 |
} catch (org.apache.thrift.TException te) {
|
17632 |
} catch (org.apache.thrift.TException te) {
|
| 17553 |
throw new java.io.IOException(te);
|
17633 |
throw new java.io.IOException(te);
|
| 17554 |
}
|
17634 |
}
|
| 17555 |
}
|
17635 |
}
|
| Line 17927... |
Line 18007... |
| 17927 |
}
|
18007 |
}
|
| 17928 |
}
|
18008 |
}
|
| 17929 |
|
18009 |
|
| 17930 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
18010 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
| 17931 |
try {
|
18011 |
try {
|
| 17932 |
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
|
- |
|
| 17933 |
__isset_bit_vector = new BitSet(1);
|
- |
|
| 17934 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
18012 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
| 17935 |
} catch (org.apache.thrift.TException te) {
|
18013 |
} catch (org.apache.thrift.TException te) {
|
| 17936 |
throw new java.io.IOException(te);
|
18014 |
throw new java.io.IOException(te);
|
| 17937 |
}
|
18015 |
}
|
| 17938 |
}
|
18016 |
}
|
| Line 19102... |
Line 19180... |
| 19102 |
}
|
19180 |
}
|
| 19103 |
}
|
19181 |
}
|
| 19104 |
|
19182 |
|
| 19105 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
19183 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
| 19106 |
try {
|
19184 |
try {
|
| 19107 |
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
|
- |
|
| 19108 |
__isset_bit_vector = new BitSet(1);
|
- |
|
| 19109 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
19185 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
| 19110 |
} catch (org.apache.thrift.TException te) {
|
19186 |
} catch (org.apache.thrift.TException te) {
|
| 19111 |
throw new java.io.IOException(te);
|
19187 |
throw new java.io.IOException(te);
|
| 19112 |
}
|
19188 |
}
|
| 19113 |
}
|
19189 |
}
|
| Line 20109... |
Line 20185... |
| 20109 |
}
|
20185 |
}
|
| 20110 |
}
|
20186 |
}
|
| 20111 |
|
20187 |
|
| 20112 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
20188 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
| 20113 |
try {
|
20189 |
try {
|
| 20114 |
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
|
- |
|
| 20115 |
__isset_bit_vector = new BitSet(1);
|
- |
|
| 20116 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
20190 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
| 20117 |
} catch (org.apache.thrift.TException te) {
|
20191 |
} catch (org.apache.thrift.TException te) {
|
| 20118 |
throw new java.io.IOException(te);
|
20192 |
throw new java.io.IOException(te);
|
| 20119 |
}
|
20193 |
}
|
| 20120 |
}
|
20194 |
}
|
| Line 22460... |
Line 22534... |
| 22460 |
}
|
22534 |
}
|
| 22461 |
}
|
22535 |
}
|
| 22462 |
|
22536 |
|
| 22463 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
22537 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
| 22464 |
try {
|
22538 |
try {
|
| - |
|
22539 |
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
|
| - |
|
22540 |
__isset_bit_vector = new BitSet(1);
|
| 22465 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
22541 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
| 22466 |
} catch (org.apache.thrift.TException te) {
|
22542 |
} catch (org.apache.thrift.TException te) {
|
| 22467 |
throw new java.io.IOException(te);
|
22543 |
throw new java.io.IOException(te);
|
| 22468 |
}
|
22544 |
}
|
| 22469 |
}
|
22545 |
}
|
| Line 24965... |
Line 25041... |
| 24965 |
}
|
25041 |
}
|
| 24966 |
}
|
25042 |
}
|
| 24967 |
|
25043 |
|
| 24968 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
25044 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
| 24969 |
try {
|
25045 |
try {
|
| - |
|
25046 |
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
|
| - |
|
25047 |
__isset_bit_vector = new BitSet(1);
|
| 24970 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
25048 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
| 24971 |
} catch (org.apache.thrift.TException te) {
|
25049 |
} catch (org.apache.thrift.TException te) {
|
| 24972 |
throw new java.io.IOException(te);
|
25050 |
throw new java.io.IOException(te);
|
| 24973 |
}
|
25051 |
}
|
| 24974 |
}
|
25052 |
}
|
| Line 26831... |
Line 26909... |
| 26831 |
}
|
26909 |
}
|
| 26832 |
}
|
26910 |
}
|
| 26833 |
|
26911 |
|
| 26834 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
26912 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
| 26835 |
try {
|
26913 |
try {
|
| - |
|
26914 |
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
|
| - |
|
26915 |
__isset_bit_vector = new BitSet(1);
|
| 26836 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
26916 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
| 26837 |
} catch (org.apache.thrift.TException te) {
|
26917 |
} catch (org.apache.thrift.TException te) {
|
| 26838 |
throw new java.io.IOException(te);
|
26918 |
throw new java.io.IOException(te);
|
| 26839 |
}
|
26919 |
}
|
| 26840 |
}
|
26920 |
}
|
| Line 27417... |
Line 27497... |
| 27417 |
}
|
27497 |
}
|
| 27418 |
}
|
27498 |
}
|
| 27419 |
|
27499 |
|
| 27420 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
27500 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
| 27421 |
try {
|
27501 |
try {
|
| - |
|
27502 |
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
|
| - |
|
27503 |
__isset_bit_vector = new BitSet(1);
|
| 27422 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
27504 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
| 27423 |
} catch (org.apache.thrift.TException te) {
|
27505 |
} catch (org.apache.thrift.TException te) {
|
| 27424 |
throw new java.io.IOException(te);
|
27506 |
throw new java.io.IOException(te);
|
| 27425 |
}
|
27507 |
}
|
| 27426 |
}
|
27508 |
}
|
| Line 29941... |
Line 30023... |
| 29941 |
}
|
30023 |
}
|
| 29942 |
}
|
30024 |
}
|
| 29943 |
|
30025 |
|
| 29944 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
30026 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
| 29945 |
try {
|
30027 |
try {
|
| 29946 |
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
|
- |
|
| 29947 |
__isset_bit_vector = new BitSet(1);
|
- |
|
| 29948 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
30028 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
| 29949 |
} catch (org.apache.thrift.TException te) {
|
30029 |
} catch (org.apache.thrift.TException te) {
|
| 29950 |
throw new java.io.IOException(te);
|
30030 |
throw new java.io.IOException(te);
|
| 29951 |
}
|
30031 |
}
|
| 29952 |
}
|
30032 |
}
|
| Line 34075... |
Line 34155... |
| 34075 |
}
|
34155 |
}
|
| 34076 |
}
|
34156 |
}
|
| 34077 |
|
34157 |
|
| 34078 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
34158 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
| 34079 |
try {
|
34159 |
try {
|
| 34080 |
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
|
- |
|
| 34081 |
__isset_bit_vector = new BitSet(1);
|
- |
|
| 34082 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
34160 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
| 34083 |
} catch (org.apache.thrift.TException te) {
|
34161 |
} catch (org.apache.thrift.TException te) {
|
| 34084 |
throw new java.io.IOException(te);
|
34162 |
throw new java.io.IOException(te);
|
| 34085 |
}
|
34163 |
}
|
| 34086 |
}
|
34164 |
}
|
| Line 36608... |
Line 36686... |
| 36608 |
}
|
36686 |
}
|
| 36609 |
}
|
36687 |
}
|
| 36610 |
|
36688 |
|
| 36611 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
36689 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
| 36612 |
try {
|
36690 |
try {
|
| 36613 |
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
|
- |
|
| 36614 |
__isset_bit_vector = new BitSet(1);
|
- |
|
| 36615 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
36691 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
| 36616 |
} catch (org.apache.thrift.TException te) {
|
36692 |
} catch (org.apache.thrift.TException te) {
|
| 36617 |
throw new java.io.IOException(te);
|
36693 |
throw new java.io.IOException(te);
|
| 36618 |
}
|
36694 |
}
|
| 36619 |
}
|
36695 |
}
|
| Line 37280... |
Line 37356... |
| 37280 |
}
|
37356 |
}
|
| 37281 |
}
|
37357 |
}
|
| 37282 |
|
37358 |
|
| 37283 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
37359 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
| 37284 |
try {
|
37360 |
try {
|
| 37285 |
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
|
- |
|
| 37286 |
__isset_bit_vector = new BitSet(1);
|
- |
|
| 37287 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
37361 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
| 37288 |
} catch (org.apache.thrift.TException te) {
|
37362 |
} catch (org.apache.thrift.TException te) {
|
| 37289 |
throw new java.io.IOException(te);
|
37363 |
throw new java.io.IOException(te);
|
| 37290 |
}
|
37364 |
}
|
| 37291 |
}
|
37365 |
}
|
| Line 37775... |
Line 37849... |
| 37775 |
}
|
37849 |
}
|
| 37776 |
}
|
37850 |
}
|
| 37777 |
|
37851 |
|
| 37778 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
37852 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
| 37779 |
try {
|
37853 |
try {
|
| 37780 |
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
|
- |
|
| 37781 |
__isset_bit_vector = new BitSet(1);
|
- |
|
| 37782 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
37854 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
| 37783 |
} catch (org.apache.thrift.TException te) {
|
37855 |
} catch (org.apache.thrift.TException te) {
|
| 37784 |
throw new java.io.IOException(te);
|
37856 |
throw new java.io.IOException(te);
|
| 37785 |
}
|
37857 |
}
|
| 37786 |
}
|
37858 |
}
|
| Line 50448... |
Line 50520... |
| 50448 |
}
|
50520 |
}
|
| 50449 |
}
|
50521 |
}
|
| 50450 |
|
50522 |
|
| 50451 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
50523 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
| 50452 |
try {
|
50524 |
try {
|
| 50453 |
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
|
- |
|
| 50454 |
__isset_bit_vector = new BitSet(1);
|
- |
|
| 50455 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
50525 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
| 50456 |
} catch (org.apache.thrift.TException te) {
|
50526 |
} catch (org.apache.thrift.TException te) {
|
| 50457 |
throw new java.io.IOException(te);
|
50527 |
throw new java.io.IOException(te);
|
| 50458 |
}
|
50528 |
}
|
| 50459 |
}
|
50529 |
}
|
| Line 52202... |
Line 52272... |
| 52202 |
}
|
52272 |
}
|
| 52203 |
}
|
52273 |
}
|
| 52204 |
|
52274 |
|
| 52205 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
52275 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
| 52206 |
try {
|
52276 |
try {
|
| 52207 |
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
|
- |
|
| 52208 |
__isset_bit_vector = new BitSet(1);
|
- |
|
| 52209 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
52277 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
| 52210 |
} catch (org.apache.thrift.TException te) {
|
52278 |
} catch (org.apache.thrift.TException te) {
|
| 52211 |
throw new java.io.IOException(te);
|
52279 |
throw new java.io.IOException(te);
|
| 52212 |
}
|
52280 |
}
|
| 52213 |
}
|
52281 |
}
|
| Line 59312... |
Line 59380... |
| 59312 |
}
|
59380 |
}
|
| 59313 |
}
|
59381 |
}
|
| 59314 |
|
59382 |
|
| 59315 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
59383 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
| 59316 |
try {
|
59384 |
try {
|
| 59317 |
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
|
- |
|
| 59318 |
__isset_bit_vector = new BitSet(1);
|
- |
|
| 59319 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
59385 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
| 59320 |
} catch (org.apache.thrift.TException te) {
|
59386 |
} catch (org.apache.thrift.TException te) {
|
| 59321 |
throw new java.io.IOException(te);
|
59387 |
throw new java.io.IOException(te);
|
| 59322 |
}
|
59388 |
}
|
| 59323 |
}
|
59389 |
}
|
| Line 60469... |
Line 60535... |
| 60469 |
}
|
60535 |
}
|
| 60470 |
}
|
60536 |
}
|
| 60471 |
|
60537 |
|
| 60472 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
60538 |
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
|
| 60473 |
try {
|
60539 |
try {
|
| 60474 |
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
|
- |
|
| 60475 |
__isset_bit_vector = new BitSet(1);
|
- |
|
| 60476 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
60540 |
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
|
| 60477 |
} catch (org.apache.thrift.TException te) {
|
60541 |
} catch (org.apache.thrift.TException te) {
|
| 60478 |
throw new java.io.IOException(te);
|
60542 |
throw new java.io.IOException(te);
|
| 60479 |
}
|
60543 |
}
|
| 60480 |
}
|
60544 |
}
|